public enum MapType extends Enum<MapType>
| Enum Constant and Description |
|---|
Map
a normal map
|
Multimap
a guava multimap
|
| Modifier and Type | Method and Description |
|---|---|
static MapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapType Map
public static final MapType Multimap
public static MapType[] values()
for (MapType c : MapType.values()) System.out.println(c);
public static MapType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Taimos GmbH. All rights reserved.