public static enum ObservableList.ChangeType extends java.lang.Enum<ObservableList.ChangeType>
Enum Constant | Description |
---|---|
ADDED |
|
CLEARED |
|
MULTI_ADD |
|
MULTI_REMOVE |
|
NONE |
|
REMOVED |
|
UPDATED |
Modifier and Type | Field | Description |
---|---|---|
static java.lang.Object |
newValue |
|
static java.lang.Object |
oldValue |
Modifier and Type | Method | Description |
---|---|---|
static ObservableList.ChangeType |
resolve(int ordinal) |
|
static ObservableList.ChangeType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ObservableList.ChangeType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObservableList.ChangeType ADDED
public static final ObservableList.ChangeType UPDATED
public static final ObservableList.ChangeType REMOVED
public static final ObservableList.ChangeType CLEARED
public static final ObservableList.ChangeType MULTI_ADD
public static final ObservableList.ChangeType MULTI_REMOVE
public static final ObservableList.ChangeType NONE
public static final java.lang.Object oldValue
public static final java.lang.Object newValue
public static ObservableList.ChangeType[] values()
for (ObservableList.ChangeType c : ObservableList.ChangeType.values()) System.out.println(c);
public static ObservableList.ChangeType 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 nullpublic static ObservableList.ChangeType resolve(int ordinal)