public static enum InterfaceEvent.Type extends java.lang.Enum<InterfaceEvent.Type>
Enum Constant and Description |
---|
INTERFACE_ADDED
Indicates a new interface has been added.
|
INTERFACE_REMOVED
Indicates an interface has been removed.
|
INTERFACE_UPDATED
Indicates an interface has been updated.
|
Modifier and Type | Method and Description |
---|---|
static InterfaceEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterfaceEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterfaceEvent.Type INTERFACE_ADDED
public static final InterfaceEvent.Type INTERFACE_UPDATED
public static final InterfaceEvent.Type INTERFACE_REMOVED
public static InterfaceEvent.Type[] values()
for (InterfaceEvent.Type c : InterfaceEvent.Type.values()) System.out.println(c);
public static InterfaceEvent.Type 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