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>
Method Summary |
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. |
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 |
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
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 name
java.lang.NullPointerException
- if the argument is null
Copyright © 1998-2012 Bela Ban / Red Hat. All Rights Reserved.