public static enum TAction.Type extends java.lang.Enum<TAction.Type>
Enum Constant and Description |
---|
DITRANSITIVE
Has up to two targets.
|
GENERAL
Has no targets.
|
MODAL
Has very specific targets.
|
OPEN
Has an open target.
|
TRANSITIVE
Has one target.
|
Modifier and Type | Method and Description |
---|---|
static TAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TAction.Type DITRANSITIVE
public static final TAction.Type GENERAL
public static final TAction.Type MODAL
public static final TAction.Type OPEN
public static final TAction.Type TRANSITIVE
public static TAction.Type[] values()
for (TAction.Type c : TAction.Type.values()) System.out.println(c);
public static TAction.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