|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TriggerThresholdMetric>
com.ace.moab.api.triggers.TriggerThresholdMetric
public enum TriggerThresholdMetric
This enum describes the metric to use when measuring the threshold used to fire a trigger. This metric is only used if a threshold is specified for a given trigger.
TriggerThreshold
Enum Constant Summary | |
---|---|
AVAILABILITY
|
|
BACKLOG
|
|
GMETRIC
|
|
QUEUETIME
|
|
USAGE
Only enabled for reservation triggers and is specified as a percentage of utilization. |
|
XFACTOR
|
Method Summary | |
---|---|
static TriggerThresholdMetric |
parseString(java.lang.String string)
Parses a string and converts it into a TriggerThresholdMetric object. |
static TriggerThresholdMetric |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TriggerThresholdMetric[] |
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 |
Enum Constant Detail |
---|
public static final TriggerThresholdMetric AVAILABILITY
public static final TriggerThresholdMetric BACKLOG
public static final TriggerThresholdMetric GMETRIC
public static final TriggerThresholdMetric QUEUETIME
public static final TriggerThresholdMetric USAGE
public static final TriggerThresholdMetric XFACTOR
Method Detail |
---|
public static final TriggerThresholdMetric[] values()
for(TriggerThresholdMetric c : TriggerThresholdMetric.values()) System.out.println(c);
public static TriggerThresholdMetric 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 namepublic static TriggerThresholdMetric parseString(java.lang.String string)
string
- the string to be parsed.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |