public static enum MappingStore.Type extends java.lang.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(java.lang.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(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