public static enum PiTableAction.Type extends java.lang.Enum<PiTableAction.Type>
Enum Constant and Description |
---|
ACTION
Simple action with runtime parameters set by the control plane.
|
ACTION_GROUP_ID
Executes the action group specified by the given identifier.
|
GROUP_MEMBER_ID
Executes the action member group specified by the given identifier.
|
Modifier and Type | Method and Description |
---|---|
static PiTableAction.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PiTableAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PiTableAction.Type ACTION
public static final PiTableAction.Type ACTION_GROUP_ID
public static final PiTableAction.Type GROUP_MEMBER_ID
public static PiTableAction.Type[] values()
for (PiTableAction.Type c : PiTableAction.Type.values()) System.out.println(c);
public static PiTableAction.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