public enum ActionSuperType extends Enum<ActionSuperType>
| Enum Constant and Description |
|---|
BRL_ACTION |
FIELD_ACTION |
RETRACT_ACTION |
| Modifier and Type | Method and Description |
|---|---|
static ActionSuperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionSuperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionSuperType RETRACT_ACTION
public static final ActionSuperType BRL_ACTION
public static final ActionSuperType FIELD_ACTION
public static ActionSuperType[] values()
for (ActionSuperType c : ActionSuperType.values()) System.out.println(c);
public static ActionSuperType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001–2021 JBoss by Red Hat. All rights reserved.