public enum FlagAdapter extends Enum<FlagAdapter>
| Enum Constant and Description |
|---|
CACHE_MODE_LOCAL |
FORCE_ASYNCHRONOUS |
FORCE_SYNCHRONOUS |
SKIP_CACHE_LOAD |
SKIP_CACHE_STORE |
ZERO_LOCK_ACQUISITION_TIMEOUT |
| Modifier and Type | Method and Description |
|---|---|
static FlagAdapter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlagAdapter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagAdapter ZERO_LOCK_ACQUISITION_TIMEOUT
public static final FlagAdapter CACHE_MODE_LOCAL
public static final FlagAdapter FORCE_ASYNCHRONOUS
public static final FlagAdapter FORCE_SYNCHRONOUS
public static final FlagAdapter SKIP_CACHE_STORE
public static final FlagAdapter SKIP_CACHE_LOAD
public static FlagAdapter[] values()
for (FlagAdapter c : FlagAdapter.values()) System.out.println(c);
public static FlagAdapter valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2012 JBoss by Red Hat. All Rights Reserved.