public static enum DBEditorConfig.Result extends java.lang.Enum<DBEditorConfig.Result>
| Enum Constant and Description | 
|---|
CANCELLED
The commit was cancelled by the user. 
 | 
ERROR
An unexpected error was encountered. 
 | 
FAILED
The commit was attempted and failed. 
 | 
IN_PROGRESS
The commit is in progress, or is yet to be attempted (e.g. 
 | 
SUCCESS
The commit operation has successfully completed. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DBEditorConfig.Result | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DBEditorConfig.Result[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DBEditorConfig.Result ERROR
public static final DBEditorConfig.Result FAILED
public static final DBEditorConfig.Result CANCELLED
public static final DBEditorConfig.Result IN_PROGRESS
public static final DBEditorConfig.Result SUCCESS
public static DBEditorConfig.Result[] values()
for (DBEditorConfig.Result c : DBEditorConfig.Result.values()) System.out.println(c);
public static DBEditorConfig.Result 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