public static enum ObservableEvent.EventType extends Enum<ObservableEvent.EventType>
| Enum Constant and Description |
|---|
ADD_ELEMENT |
REMOVE_ELEMENT |
UPDATE |
UPDATE_ELEMENT |
| Modifier and Type | Method and Description |
|---|---|
static ObservableEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObservableEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObservableEvent.EventType UPDATE
public static final ObservableEvent.EventType ADD_ELEMENT
public static final ObservableEvent.EventType REMOVE_ELEMENT
public static final ObservableEvent.EventType UPDATE_ELEMENT
public static ObservableEvent.EventType[] values()
for (ObservableEvent.EventType c : ObservableEvent.EventType.values()) System.out.println(c);
public static ObservableEvent.EventType 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 © 2022 vpc open source initiative. All rights reserved.