public static enum DataProviderDelayCommitSetting.CommitMode extends java.lang.Enum<DataProviderDelayCommitSetting.CommitMode>
Enum Constant and Description |
---|
INTERVALUPDATE
In accordance with the set time interval to update
|
SPECIFICTIME
The update is made when the set time point is reached
|
Modifier and Type | Method and Description |
---|---|
static DataProviderDelayCommitSetting.CommitMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataProviderDelayCommitSetting.CommitMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final DataProviderDelayCommitSetting.CommitMode INTERVALUPDATE
In accordance with the set time interval to update
public static final DataProviderDelayCommitSetting.CommitMode SPECIFICTIME
The update is made when the set time point is reached
public static DataProviderDelayCommitSetting.CommitMode[] values()
for (DataProviderDelayCommitSetting.CommitMode c : DataProviderDelayCommitSetting.CommitMode.values()) System.out.println(c);
public static DataProviderDelayCommitSetting.CommitMode 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 namejava.lang.NullPointerException
- if the argument is null