|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IDataBook.WriteBackIsolationLevel>
javax.rad.model.IDataBook.WriteBackIsolationLevel
public static enum IDataBook.WriteBackIsolationLevel
The IDataBook (and IDataSourrce as Default) write back isolations levels, specify when the changes in the IDataBook should be implicit write back to the storage. A typical way and default is data row level (DATA_ROW).
Enum Constant Summary | |
---|---|
DATA_ROW
The IDataSource stores the data when another IDataRow
has changed/selected. |
|
DATASOURCE
The IDataSource stores the data when a saveXXXX()
method is called. |
Method Summary | |
---|---|
static IDataBook.WriteBackIsolationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IDataBook.WriteBackIsolationLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IDataBook.WriteBackIsolationLevel DATA_ROW
IDataSource
stores the data when another IDataRow
has changed/selected.
public static final IDataBook.WriteBackIsolationLevel DATASOURCE
IDataSource
stores the data when a saveXXXX()
method is called.
Method Detail |
---|
public static IDataBook.WriteBackIsolationLevel[] values()
for (IDataBook.WriteBackIsolationLevel c : IDataBook.WriteBackIsolationLevel.values()) System.out.println(c);
public static IDataBook.WriteBackIsolationLevel valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |