public enum DataCacheStoreMode extends Enum<DataCacheStoreMode>
| Enum Constant and Description | 
|---|
| BYPASSWrite updates, inserts and deletes directly to the database. | 
| REFRESHStore updates, inserts and deletes in the DataCache. | 
| USEStore 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–2018 Apache Software Foundation. All rights reserved.