protected static enum COUNTER.RequestType extends java.lang.Enum<COUNTER.RequestType>
枚举常量和说明 |
---|
ADD_AND_GET |
COMPARE_AND_SET |
DELETE |
GET_OR_CREATE |
RECONCILE |
RESEND_PENDING_REQUESTS |
SET |
UPDATE |
限定符和类型 | 方法和说明 |
---|---|
static COUNTER.RequestType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static COUNTER.RequestType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final COUNTER.RequestType GET_OR_CREATE
public static final COUNTER.RequestType DELETE
public static final COUNTER.RequestType SET
public static final COUNTER.RequestType COMPARE_AND_SET
public static final COUNTER.RequestType ADD_AND_GET
public static final COUNTER.RequestType UPDATE
public static final COUNTER.RequestType RECONCILE
public static final COUNTER.RequestType RESEND_PENDING_REQUESTS
public static COUNTER.RequestType[] values()
for (COUNTER.RequestType c : COUNTER.RequestType.values()) System.out.println(c);
public static COUNTER.RequestType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值