Enum OperationResult.Status
- java.lang.Object
-
- java.lang.Enum<OperationResult.Status>
-
- com.alachisoft.ncache.runtime.datasourceprovider.OperationResult.Status
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<OperationResult.Status>
- Enclosing class:
- OperationResult
public static enum OperationResult.Status extends java.lang.Enum<OperationResult.Status>
Status contains the Operation Status flag that is either success/Failure/FailureRetry/FailureDontRemove
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FailureStatus is Failure in case of unsuccessful operation.FailureDontRemoveStatus is FailureDontRemove in case of unsuccessful operation and if the user doesn't want to remove that item from the cache.FailureRetryIn case of Failure this flag is used for retry functionality.SuccessStatus is success in case of successful operation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationResult.StatusforValue(int value)retreives the enum constant of the specified value, if exists.intgetValue()Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.static OperationResult.StatusvalueOf(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.
-
-
-
Enum Constant Detail
-
Success
public static final OperationResult.Status Success
Status is success in case of successful operation.
-
Failure
public static final OperationResult.Status Failure
Status is Failure in case of unsuccessful operation.
-
FailureRetry
public static final OperationResult.Status FailureRetry
In case of Failure this flag is used for retry functionality.
-
FailureDontRemove
public static final OperationResult.Status FailureDontRemove
Status is FailureDontRemove in case of unsuccessful operation and if the user doesn't want to remove that item from the cache.
-
-
Method Detail
-
values
public static OperationResult.Status[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OperationResult.Status c : OperationResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationResult.Status valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.- Returns:
- enum constant index
-
forValue
public static OperationResult.Status forValue(int value)
retreives the enum constant of the specified value, if exists.- Parameters:
value- enum constant index- Returns:
- enum constant
-
-