org.ow2.clif.scenario.isac.egui.pages.pageBehavior
Enum ActionPlacement
java.lang.Object
java.lang.Enum<ActionPlacement>
org.ow2.clif.scenario.isac.egui.pages.pageBehavior.ActionPlacement
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ActionPlacement>
public enum ActionPlacement
- extends java.lang.Enum<ActionPlacement>
Enum containing possible insertion of node
- Author:
- Anthonin Bonnefoy
Method Summary |
static ActionPlacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ActionPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
CHILD
public static final ActionPlacement CHILD
BEFORE_NODE
public static final ActionPlacement BEFORE_NODE
AFTER_NODE
public static final ActionPlacement AFTER_NODE
END
public static final ActionPlacement END
BEGIN
public static final ActionPlacement BEGIN
CANCEL
public static final ActionPlacement CANCEL
values
public static final ActionPlacement[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ActionPlacement c : ActionPlacement.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ActionPlacement valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name