public static enum ObservableSet.SetDataEvent.Type extends Enum<ObservableSet .SetDataEvent .Type >
| Enum Constant and Description |
|---|
BOTH
Identifies the addition and removal of one or more elements to the set.
|
ELEMENTS_ADDED
Identifies the addition of one or more elements to the set.
|
ELEMENTS_REMOVED
Identifies the removal of one or more elements to the set.
|
| Modifier and Type | Method and Description |
|---|---|
static ObservableSet |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static ObservableSet |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ObservableSet.SetDataEvent .Type ELEMENTS_ADDED
public static final ObservableSet.SetDataEvent .Type ELEMENTS_REMOVED
public static final ObservableSet.SetDataEvent .Type BOTH
public static ObservableSet.SetDataEvent .Type [] values()
for (ObservableSet.SetDataEvent.Type c : ObservableSet.SetDataEvent.Type.values()) System.out.println(c);
public static ObservableSet.SetDataEvent .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 name
NullPointerException - if the argument is null