public static enum Listener.NOTIFICATION_TYPE extends Enum<Listener.NOTIFICATION_TYPE>
| Enum Constant and Description |
|---|
ADD
An object or value has been added
|
REMOVE
An object or value has been removed.
|
REMOVE_ALL
All objects or values have been removed.
|
SET
An object or value has been set.
|
| Modifier and Type | Method and Description |
|---|---|
static Listener.NOTIFICATION_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Listener.NOTIFICATION_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Listener.NOTIFICATION_TYPE ADD
public static final Listener.NOTIFICATION_TYPE REMOVE
public static final Listener.NOTIFICATION_TYPE REMOVE_ALL
public static final Listener.NOTIFICATION_TYPE SET
public static Listener.NOTIFICATION_TYPE[] values()
for (Listener.NOTIFICATION_TYPE c : Listener.NOTIFICATION_TYPE.values()) System.out.println(c);
public static Listener.NOTIFICATION_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 © 2009–2020 Humboldt-Universität zu Berlin, INRIA. All rights reserved.