public static enum MapDBHashTable.Storage extends Enum<MapDBHashTable.Storage>
Modifier and Type | Method and Description |
---|---|
static MapDBHashTable.Storage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapDBHashTable.Storage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapDBHashTable.Storage MEMORY
public static final MapDBHashTable.Storage DISK
public static MapDBHashTable.Storage[] values()
for (MapDBHashTable.Storage c : MapDBHashTable.Storage.values()) System.out.println(c);
public static MapDBHashTable.Storage 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 © 2017–2018. All rights reserved.