Enum Map
An EnumMap is a Map implementation for use with enum type keys only. All of the keys in an EnumMap must come from a single enum that is specified, explicitly as the first parameterized type. EnumMaps are represented internally as arrays. Enum maps are maintained in the natural order of their keys (Enum.ordinals).
This map does not support nulls as valid values. A key-value pair where the value is null is indicative that the "key" is not present.
Author
Richard Arriaga
Parameters
Constructors
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The Array of values stored in this Enum. null values are not allowed as a null value indicates the absence of a value.