public enum DataStoreMode extends Enum<DataStoreMode>
| Enum Constant and Description |
|---|
CACHED |
EMPTY |
TRANSACTIONAL |
TRANSIENT |
| Modifier and Type | Method and Description |
|---|---|
abstract InternalStrolchRealm |
createRealm(String realm) |
abstract boolean |
isTransient() |
static DataStoreMode |
parseDataStoreMode(String modeS) |
static DataStoreMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataStoreMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataStoreMode EMPTY
public static final DataStoreMode TRANSIENT
public static final DataStoreMode CACHED
public static final DataStoreMode TRANSACTIONAL
public static DataStoreMode[] values()
for (DataStoreMode c : DataStoreMode.values()) System.out.println(c);
public static DataStoreMode 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 nullpublic abstract InternalStrolchRealm createRealm(String realm)
public abstract boolean isTransient()
public static DataStoreMode parseDataStoreMode(String modeS)
Copyright © 2011–2016 Strolch. All rights reserved.