public static enum Store.RemoveStatus extends java.lang.Enum<Store.RemoveStatus>
| Enum Constant and Description | 
|---|
| KEY_MISSINGMapping was not remove as there was no mapping | 
| KEY_PRESENTMapping was not removed although there was one | 
| REMOVEDMapping was removed | 
| Modifier and Type | Method and Description | 
|---|---|
| static Store.RemoveStatus | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Store.RemoveStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Store.RemoveStatus REMOVED
public static final Store.RemoveStatus KEY_PRESENT
public static final Store.RemoveStatus KEY_MISSING
public static Store.RemoveStatus[] values()
for (Store.RemoveStatus c : Store.RemoveStatus.values()) System.out.println(c);
public static Store.RemoveStatus 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