public static enum DOFInterface.ItemType extends java.lang.Enum<DOFInterface.ItemType>
Enum Constant and Description |
---|
EVENT
Item of type Event.
|
EXCEPTION
Item of type Exception.
|
METHOD
Item of type Method.
|
PROPERTY
Item of type Property.
|
Modifier and Type | Method and Description |
---|---|
static DOFInterface.ItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFInterface.ItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFInterface.ItemType PROPERTY
public static final DOFInterface.ItemType METHOD
public static final DOFInterface.ItemType EVENT
public static final DOFInterface.ItemType EXCEPTION
public static DOFInterface.ItemType[] values()
for (DOFInterface.ItemType c : DOFInterface.ItemType.values()) System.out.println(c);
public static DOFInterface.ItemType 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