public enum PerformanceMeasure extends java.lang.Enum<PerformanceMeasure>
Enum Constant and Description |
---|
STATE_TIMES_SPENT_AVG |
STATE_TIMES_SPENT_COUNT |
STATE_TIMES_SPENT_MAX |
STATE_TIMES_SPENT_MEDIAN |
STATE_TIMES_SPENT_MIN |
STATE_TIMES_SPENT_SUM |
STATE_TIMES_SPENT_SUMMARY |
TRANSITION_TIMES_EXECUTED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
java.lang.String |
getRegex() |
void |
setLabel(java.lang.String label) |
void |
setRegex(java.lang.String regex) |
static PerformanceMeasure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceMeasure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceMeasure STATE_TIMES_SPENT_SUMMARY
public static final PerformanceMeasure STATE_TIMES_SPENT_MIN
public static final PerformanceMeasure STATE_TIMES_SPENT_MAX
public static final PerformanceMeasure STATE_TIMES_SPENT_AVG
public static final PerformanceMeasure STATE_TIMES_SPENT_MEDIAN
public static final PerformanceMeasure STATE_TIMES_SPENT_SUM
public static final PerformanceMeasure STATE_TIMES_SPENT_COUNT
public static final PerformanceMeasure TRANSITION_TIMES_EXECUTED
public static PerformanceMeasure[] values()
for (PerformanceMeasure c : PerformanceMeasure.values()) System.out.println(c);
public static PerformanceMeasure 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 void setLabel(java.lang.String label)
public java.lang.String getLabel()
public void setRegex(java.lang.String regex)
public java.lang.String getRegex()