Package org.jgroups.protocols
Enum COUNTER.RequestType
- java.lang.Object
-
- java.lang.Enum<COUNTER.RequestType>
-
- org.jgroups.protocols.COUNTER.RequestType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<COUNTER.RequestType>
- Enclosing class:
- COUNTER
protected static enum COUNTER.RequestType extends java.lang.Enum<COUNTER.RequestType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_AND_GET
COMPARE_AND_SET
DELETE
GET_OR_CREATE
RECONCILE
RESEND_PENDING_REQUESTS
SET
UPDATE
UPDATE_FUNCTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static COUNTER.RequestType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static COUNTER.RequestType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_OR_CREATE
public static final COUNTER.RequestType GET_OR_CREATE
-
DELETE
public static final COUNTER.RequestType DELETE
-
SET
public static final COUNTER.RequestType SET
-
COMPARE_AND_SET
public static final COUNTER.RequestType COMPARE_AND_SET
-
ADD_AND_GET
public static final COUNTER.RequestType ADD_AND_GET
-
UPDATE
public static final COUNTER.RequestType UPDATE
-
RECONCILE
public static final COUNTER.RequestType RECONCILE
-
RESEND_PENDING_REQUESTS
public static final COUNTER.RequestType RESEND_PENDING_REQUESTS
-
UPDATE_FUNCTION
public static final COUNTER.RequestType UPDATE_FUNCTION
-
-
Method Detail
-
values
public static COUNTER.RequestType[] 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 (COUNTER.RequestType c : COUNTER.RequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static COUNTER.RequestType 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
-
-