|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Store.StoreType>
org.jtoolkit.essence.data.Store.StoreType
public static enum Store.StoreType
How is the Store represented/persisted.
| Enum Constant Summary | |
|---|---|
FILE_SET
The store is backed by a directory of small binary format files. |
|
JDBC
The store is backed by a JDBC database. |
|
MEMORY
Data is volatile and in memory only. |
|
NET
The store is a proxy for another store in another Container/JVM/machine. |
|
SINGLE_FILE
The store is backed by a binary format file. |
|
TABS
The store is backed by a tab seperated file. |
|
| Method Summary | |
|---|---|
static Store.StoreType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Store.StoreType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Store.StoreType MEMORY
public static final Store.StoreType NET
public static final Store.StoreType JDBC
public static final Store.StoreType TABS
public static final Store.StoreType SINGLE_FILE
public static final Store.StoreType FILE_SET
| Method Detail |
|---|
public static final Store.StoreType[] values()
for(Store.StoreType c : Store.StoreType.values())
System.out.println(c);
public static Store.StoreType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||