|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ExceptionAction> com.hazelcast.spi.ExceptionAction
public enum ExceptionAction
The possible actions that can be taken when a certain exception is thrown. E.g. when a map.get is executed on a member where the partition has just moved to another box, the ExceptionAction.RETRY_INVOCATION would be used.
Enum Constant Summary | |
---|---|
CONTINUE_WAIT
Indicates that more waiting can be done (e.g. |
|
RETRY_INVOCATION
Indicates that the operation can be retried. |
|
THROW_EXCEPTION
Indicates that the exception should be bubble up. |
Method Summary | |
---|---|
static ExceptionAction |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ExceptionAction[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ExceptionAction RETRY_INVOCATION
public static final ExceptionAction CONTINUE_WAIT
public static final ExceptionAction THROW_EXCEPTION
Method Detail |
---|
public static ExceptionAction[] values()
for (ExceptionAction c : ExceptionAction.values()) System.out.println(c);
public static ExceptionAction valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |