public static enum ThresholdCondition.Operator extends Enum<ThresholdCondition.Operator>
| Modifier and Type | Method and Description |
|---|---|
static ThresholdCondition.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThresholdCondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThresholdCondition.Operator LT
public static final ThresholdCondition.Operator GT
public static final ThresholdCondition.Operator LTE
public static final ThresholdCondition.Operator GTE
public static ThresholdCondition.Operator[] values()
for (ThresholdCondition.Operator c : ThresholdCondition.Operator.values()) System.out.println(c);
public static ThresholdCondition.Operator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 Red Hat, Inc.. All rights reserved.