Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

public class Main {
    public static <T> List<T> mapToList(Map<String, T> map, String... excludeKey) {
        Map<String, T> tmpMap = new LinkedHashMap<String, T>(map);
        for (String exclude : excludeKey) {
            tmpMap.remove(exclude);
        }
        List<T> list = new ArrayList<>();
        for (Map.Entry<String, T> entry : tmpMap.entrySet()) {
            list.add(entry.getValue());
        }
        return list;
    }
}