public static enum OperationResult.Status extends java.lang.Enum<OperationResult.Status>
Enum Constant | Description |
---|---|
Failure |
Status is Failure in case of unsuccessful operation.
|
FailureDontRemove |
Status is FailureDontRemove in case of unsuccessful operation and if the user doesn't want to remove that item from the cache.
|
FailureRetry |
In case of Failure this flag is used for retry functionality.
|
Success |
Status is success in case of successful operation.
|
Modifier and Type | Method | Description |
---|---|---|
static OperationResult.Status |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static OperationResult.Status |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static OperationResult.Status[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationResult.Status Success
public static final OperationResult.Status Failure
public static final OperationResult.Status FailureRetry
public static final OperationResult.Status FailureDontRemove
public static OperationResult.Status[] values()
for (OperationResult.Status c : OperationResult.Status.values()) System.out.println(c);
public static OperationResult.Status 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 nullpublic int getValue()
public static OperationResult.Status forValue(int value)
value
- enum constant index