Difference between EnumMap and HashMap in Java

HashMap vs EnumMap in Java

What is the difference between EnumMap and HashMap in Java is the latest Java collection interview question which has been asked to a couple of my friends? This is one of the tricky Java questions, especially if you are not very much familiar with EnumMap in Java, which is not uncommon, given you can use it with only Enum keys. The main difference between EnumMap and HashMap is that EnumMap is a specialized Map implementation exclusively for Enum as key. Using Enum as key allows doing some implementation level optimization for high performance which is generally not possible with other objects as key.

We have seen a lot of interview questions on HashMap in our article How HashMap works in Java but what we missed there is this question which is recently asked some of my friends. Unlike HashMap, EnumMap is not applicable for every case but it's best suited when you have Enum as key.

We have already covered the basics of EnumMap and some EnumMap examples in my last article What are EnumMap in Java and In this post, we will focus on key differences between HashMap and EnumMap in Java.

EnumMap vs HashMap

Before looking at differences between EnumMap and HashMap, few words about What is common between them. Both of them implements Map interface so they can be used in all methods which accept Map and data can be accessed using common Map methods e.g. get() and put(). Internally EnumMap is represented using Array and provides constant-time performance for common methods e.g. get() or put(). Now let's see few differences between EnumMap vs HashMap :

1) As said earlier, first and foremost difference between EnumMap and HashMap is that EnumMap is optimized for enum keys while HashMap is a general purpose Map implementation similar to Hashtable. you can not use any type other than Enum as key in EnumMap but you can use both Enum and any other Object as key in HashMap.

2) Another difference between EnumMap and HashMap is performance. as discussed in the previous point, due to specialized optimization done for Enum keys, EnumMap is likely to perform better than HashMap when using enum as key object.

3) One more thing which can be considered as the difference between HashMap and EnumMap is the probability of Collision. Since Enum is internally maintained as array and they are stored in their natural order using ordinal(), as shown in following code which is taken from put() method of EnumMap

int index = ((Enum)key).ordinal();

Object oldValue = vals[index];

vals[index] = maskNull(value);

Since EnumMap doesn't call hashCode method on keys, there is no chance of collision.

These were some notable difference between EnumMap and HashMap in Java. In short EnumMap is best suited for enum keys, for which it has optimized and performed better than HashMap in Java. Use EnumMap whenever you can use enum as keys.

Difference between HashMap vs EnumMap in Java

Further Learning

Java In-Depth: Become a Complete Java Engineer

Java Fundamentals: Collections

Data Structures and Algorithms: Deep Dive Using Java

Other Interview Questions from Javarevisited Blog

Difference between Hashtable and ConcurrentHashMap in Java

Difference between Runnable and Thread in Java

10 best practices to follow while writing code comments

HashMap vs HashSet in Java

Difference between Vector and ArrayList in Java

ArrayList vs LinkedList in Java