public static enum Threshold.Operator extends Enum<Threshold.Operator> implements BmcEnum
The comparison operator to use. Options are greater than (GT
), greater than or equal
to (GTE
), less than (LT
), and less than or equal to (LTE
).
Enum Constant and Description |
---|
Gt |
Gte |
Lt |
Lte |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static Threshold.Operator |
create(String key) |
String |
getValue() |
static Threshold.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Threshold.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Threshold.Operator Gt
public static final Threshold.Operator Gte
public static final Threshold.Operator Lt
public static final Threshold.Operator Lte
public static final Threshold.Operator UnknownEnumValue
public static Threshold.Operator[] values()
for (Threshold.Operator c : Threshold.Operator.values()) System.out.println(c);
public static Threshold.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 nullpublic static Threshold.Operator create(String key)
Copyright © 2016–2024. All rights reserved.