public static enum TableLoggerBase.Operation extends Enum<TableLoggerBase.Operation>
| Enum Constant and Description |
|---|
Added
Row added.
|
ModifiedNew
Row modified - new values.
|
ModifiedOld
Row modified - old values.
|
Removed
Row removed.
|
| Modifier and Type | Method and Description |
|---|---|
static TableLoggerBase.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableLoggerBase.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableLoggerBase.Operation Added
public static final TableLoggerBase.Operation ModifiedNew
public static final TableLoggerBase.Operation ModifiedOld
public static final TableLoggerBase.Operation Removed
public static TableLoggerBase.Operation[] values()
for (TableLoggerBase.Operation c : TableLoggerBase.Operation.values()) System.out.println(c);
public static TableLoggerBase.Operation 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