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