public enum DataCacheStoreMode extends Enum<DataCacheStoreMode>
Enum Constant and Description |
---|
BYPASS
Write updates, inserts and deletes directly to the database.
|
REFRESH
Store updates, inserts and deletes in the DataCache.
|
USE
Store updates, inserts and deletes in the DataCache.
|
Modifier and Type | Method and Description |
---|---|
static DataCacheStoreMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataCacheStoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCacheStoreMode USE
public static final DataCacheStoreMode BYPASS
public static final DataCacheStoreMode REFRESH
public static DataCacheStoreMode[] values()
for (DataCacheStoreMode c : DataCacheStoreMode.values()) System.out.println(c);
public static DataCacheStoreMode 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 © 2006–2022 Apache Software Foundation. All rights reserved.