The java.util.EnumMap class is a Map implementation specifically used to enumerate keys. Here are the important points about EnumMap:
Serial number |
Constructor and description |
##1 |
EnumMap(Class keyType)This constructor is created using the specified key type An empty enum map.
|
2 |
EnumMap(EnumMap m)The The constructor creates an enum map using the same key types as the specified enum map,
Initially contains the same mapping if available.
|
3 |
EnumMap(Map m)This The constructor creates an enum map initialized from the specified map.
|
table>ExampleLet’s see an example- Live Demonstrationimport java.util.EnumMap;
public class Demo {
// create an enum
public enum Numbers {
ONE, TWO, THREE, FOUR, FIVE
};
public static void main(String[] args) {
EnumMap<Numbers, String> map1 = new EnumMap<Numbers, String>(Numbers.class);
EnumMap<Numbers, String> map2 = new EnumMap<Numbers, String>(Numbers.class);
// associate values in map1
map1.put(Numbers.ONE, "1");
map1.put(Numbers.TWO, "2");
map1.put(Numbers.THREE, "3");
map1.put(Numbers.FOUR, "4");
// print the whole map
System.out.println("map1:" + map1);
// clone map1 to map2
map2 = map1.clone();
// print map2
System.out.println("map2:" + map2);
}
}
Output map1:{ONE=1, TWO=2, THREE=3, FOUR=4}
map2:{ONE=1, TWO=2, THREE=3, FOUR=4}
ExampleLet’s look at another example where we show the count of key-value mappings in a Map: Live Demonstrationimport java.util.*;
public class EnumMapDemo {
// create an enum
public enum Numbers {
ONE, TWO, THREE, FOUR, FIVE
};
public static void main(String[] args) {
EnumMap<Numbers, String> map = new EnumMap<Numbers, String>(Numbers.class);
// assosiate values in map
map.put(Numbers.ONE, "1");
map.put(Numbers.TWO, "2");
map.put(Numbers.THREE, "3");
map.put(Numbers.FOUR, "4");
// print the map
System.out.println("Map: " + map);
// print the number of mappings of this map
System.out.println("Number of mappings:" + map.size());
// remove value from Numbers.THREE
map.put(Numbers.FIVE, "5");
// print the new number of mappings of this map
System.out.println("Number of mappings:" + map.size());
}
}
OutputMap: {ONE=1, TWO=2, THREE=3, FOUR=4}
Number of mappings:4
Number of mappings:5
The above is the detailed content of EnumMap class in Java. For more information, please follow other related articles on the PHP Chinese website!