public static enum Store.ViewType extends Enum<Store.ViewType>
| Enum Constant and Description |
|---|
ASYNCHRONOUS
Asynchronous views create intermediary store which contains only
data visible by the view.
|
LAZY
Lazy views create intermediary store which contains only
data visible by the view.
|
LIVE
Live perform all operations on the master data, they
do not create an intermediary store for view data.
|
SYNCHRONOUS
Synchronous views create intermediary store which contains only
data visible by the view.
|
| Modifier and Type | Method and Description |
|---|---|
static Store.ViewType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Store.ViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Store.ViewType LIVE
public static final Store.ViewType LAZY
public static final Store.ViewType ASYNCHRONOUS
public static final Store.ViewType SYNCHRONOUS
public static Store.ViewType[] values()
for (Store.ViewType c : Store.ViewType.values()) System.out.println(c);
public static Store.ViewType 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 null