public enum CacheUse extends Enum<CacheUse>
| Enum Constant and Description |
|---|
DEFAULT
The operation may use the cache specified for default setup when it
does not have a specific cache use for this operation
|
FULL
The operation may read from and write to the local object cache.
|
NONE
The operation may neither read from nor write to the local object cache.
|
WRITE_ONLY
The operation may write to the local object cache but not read from it.
|
| Modifier and Type | Method and Description |
|---|---|
static CacheUse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheUse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheUse FULL
public static final CacheUse NONE
public static final CacheUse WRITE_ONLY
public static final CacheUse DEFAULT
public static CacheUse[] values()
for (CacheUse c : CacheUse.values()) System.out.println(c);
public static CacheUse 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 © 2018. All rights reserved.