protected static enum AbstractRegistryEventListener.Action extends java.lang.Enum<AbstractRegistryEventListener.Action>
Enum Constant and Description |
---|
ADD
An extension is being added.
|
REMOVE
An extension is being removed.
|
Modifier and Type | Method and Description |
---|---|
static AbstractRegistryEventListener.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractRegistryEventListener.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractRegistryEventListener.Action ADD
public static final AbstractRegistryEventListener.Action REMOVE
public static AbstractRegistryEventListener.Action[] values()
for (AbstractRegistryEventListener.Action c : AbstractRegistryEventListener.Action.values()) System.out.println(c);
public static AbstractRegistryEventListener.Action 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