public static enum MappingStore.Type extends Enum<MappingStore.Type>
| Enum Constant and Description |
|---|
MAP_CACHE
Signifies that mapping information should be stored in map cache.
|
MAP_DATABASE
Signifies that mapping information should be stored in map database.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingStore.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingStore.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingStore.Type MAP_DATABASE
public static final MappingStore.Type MAP_CACHE
public static MappingStore.Type[] values()
for (MappingStore.Type c : MappingStore.Type.values()) System.out.println(c);
public static MappingStore.Type 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 null