public static enum TableModificationEvent.Type extends Enum<TableModificationEvent.Type>
| Enum Constant and Description |
|---|
ROW_ADDED |
ROW_DELETED |
ROW_UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static TableModificationEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableModificationEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableModificationEvent.Type ROW_ADDED
public static final TableModificationEvent.Type ROW_DELETED
public static final TableModificationEvent.Type ROW_UPDATED
public static TableModificationEvent.Type[] values()
for (TableModificationEvent.Type c : TableModificationEvent.Type.values()) System.out.println(c);
public static TableModificationEvent.Type 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 nullCopyright © 2014. All rights reserved.