public enum ReplayAction extends java.lang.Enum<ReplayAction>
| Enum Constant and Description |
|---|
INSERT_DISABLED_MATCH
Insert a disabled transition that matches the head of the trace.
|
INSERT_DISABLED_MISMATCH
Insert a disabled transition that does not match the head of the trace.
|
INSERT_ENABLED_INVISIBLE
Insert an enabled invisible transition.
|
INSERT_ENABLED_MATCH
Insert an enabled transition that matches the head of the trace.
|
INSERT_ENABLED_MISMATCH
Insert an enabled transition that does not match the head of the trace.
|
REMOVE_HEAD
Remove the head of the trace.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getLabel() |
int |
getValue() |
static ReplayAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReplayAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplayAction INSERT_ENABLED_MATCH
public static final ReplayAction INSERT_ENABLED_INVISIBLE
public static final ReplayAction REMOVE_HEAD
public static final ReplayAction INSERT_ENABLED_MISMATCH
public static final ReplayAction INSERT_DISABLED_MATCH
public static final ReplayAction INSERT_DISABLED_MISMATCH
public static ReplayAction[] values()
for (ReplayAction c : ReplayAction.values()) System.out.println(c);
public static ReplayAction 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 nullpublic int getValue()
public java.lang.String getLabel()