public static enum MappingEntry.MappingEntryState extends Enum<MappingEntry.MappingEntryState>
| Enum Constant and Description |
|---|
ADDED
Mapping has been added which means it is either in map database or
in map cache.
|
FAILED
Indicates that the installation of this mapping has failed.
|
PENDING_ADD
Indicates that this mapping has been submitted for addition.
|
PENDING_REMOVE
Mapping has been marked for removal, might still be either in map
database or in map cache.
|
REMOVED
Mapping has been removed from map database or in map cache, and
ca be purged.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingEntry.MappingEntryState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingEntry.MappingEntryState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingEntry.MappingEntryState PENDING_ADD
public static final MappingEntry.MappingEntryState ADDED
public static final MappingEntry.MappingEntryState PENDING_REMOVE
public static final MappingEntry.MappingEntryState REMOVED
public static final MappingEntry.MappingEntryState FAILED
public static MappingEntry.MappingEntryState[] values()
for (MappingEntry.MappingEntryState c : MappingEntry.MappingEntryState.values()) System.out.println(c);
public static MappingEntry.MappingEntryState 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