public enum KeyRemovalExceptionCause extends java.lang.Enum<KeyRemovalExceptionCause>
KeyRemovalException to specify the cause of the exception.| Enum Constant and Description |
|---|
KEY_NOT_FOUND
Key was not found on the cluster.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyRemovalExceptionCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyRemovalExceptionCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyRemovalExceptionCause KEY_NOT_FOUND
Resolution: The specified key no longer exists
public static KeyRemovalExceptionCause[] values()
for (KeyRemovalExceptionCause c : KeyRemovalExceptionCause.values()) System.out.println(c);
public static KeyRemovalExceptionCause 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