public static enum Cache.SyncCacheStrategy extends Enum<Cache.SyncCacheStrategy>
| Enum Constant and Description |
|---|
CLEAR_TYPE_CACHE |
NONE |
REMOVE_ENTRY_FROM_TYPE_CACHE |
UPDATE_ENTRY |
| Modifier and Type | Method and Description |
|---|---|
static Cache.SyncCacheStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cache.SyncCacheStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cache.SyncCacheStrategy NONE
public static final Cache.SyncCacheStrategy CLEAR_TYPE_CACHE
public static final Cache.SyncCacheStrategy REMOVE_ENTRY_FROM_TYPE_CACHE
public static final Cache.SyncCacheStrategy UPDATE_ENTRY
public static Cache.SyncCacheStrategy[] values()
for (Cache.SyncCacheStrategy c : Cache.SyncCacheStrategy.values()) System.out.println(c);
public static Cache.SyncCacheStrategy 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.