static enum ListenerNotificationInfo.ListenerType extends java.lang.Enum<ListenerNotificationInfo.ListenerType>
Das Enum enthält alle Typen, die ein Listener in dieser Klasse annehmen kann.
| Enum Constant and Description |
|---|
CREATED
Der verwendete Listener ist der DynamicObjectCreatedListener.
|
INVALITDATION
Der verwendete Listener ist der InvalidationListener.
|
NAMECHANGED
Der verwendete Listener ist der NameChangeListener.
|
| Modifier and Type | Method and Description |
|---|---|
static ListenerNotificationInfo.ListenerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListenerNotificationInfo.ListenerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListenerNotificationInfo.ListenerType CREATED
public static final ListenerNotificationInfo.ListenerType NAMECHANGED
public static final ListenerNotificationInfo.ListenerType INVALITDATION
public static ListenerNotificationInfo.ListenerType[] values()
for (ListenerNotificationInfo.ListenerType c : ListenerNotificationInfo.ListenerType.values()) System.out.println(c);
public static ListenerNotificationInfo.ListenerType 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