Java EnumMap(Class < K > keyType) Constructor

Syntax

EnumMap(Class < K > keyType) constructor from EnumMap has the following syntax.

public EnumMap(Class <K> keyType)

Example

In the following code shows how to use EnumMap.EnumMap(Class < K > keyType) constructor.


/*w w w. ja v  a2 s  . com*/


import java.util.EnumMap;

enum Tutorial{CSS, Python, PHP, Java, Javascript}; 

public class Main {
   public static void main(String[] args) {
      EnumMap<Tutorial,String>  map = 
              new EnumMap<Tutorial,String> (Tutorial.class);

      map.put(Tutorial.CSS, "1");
      map.put(Tutorial.Python, "2");
      map.put(Tutorial.PHP,"3");
      map.put(Tutorial.Java, "4");
      
      System.out.println(map.hashCode()); 
      
      
   }
}

The code above generates the following result.