static enum MapMaker.Dummy extends java.lang.Enum<MapMaker.Dummy>
Interners.
MapMakerInternalMap can optimize for memory usage in this case; see MapMakerInternalMap.createWithDummyValues(com.google.common.collect.MapMaker).
| Enum Constant and Description |
|---|
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static MapMaker.Dummy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MapMaker.Dummy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapMaker.Dummy VALUE
public static MapMaker.Dummy[] values()
for (MapMaker.Dummy c : MapMaker.Dummy.values()) System.out.println(c);
public static MapMaker.Dummy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null