public static enum CacheControl.OP extends java.lang.Enum<CacheControl.OP>
Enum Constant and Description |
---|
CLEAR |
COPY |
COPY_COMPLETE |
LOAD |
STORE |
Modifier and Type | Method and Description |
---|---|
long |
value() |
static CacheControl.OP |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CacheControl.OP[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheControl.OP STORE
public static final CacheControl.OP LOAD
public static final CacheControl.OP CLEAR
public static final CacheControl.OP COPY
public static final CacheControl.OP COPY_COMPLETE
public static CacheControl.OP[] values()
for (CacheControl.OP c : CacheControl.OP.values()) System.out.println(c);
public static CacheControl.OP 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 long value()