public static enum QualityGate.Operator extends java.lang.Enum<QualityGate.Operator>
| Enum Constant and Description |
|---|
EQUALS
Deprecated.
in 7.6. Using this operator will have no effect.
|
GREATER_THAN |
LESS_THAN |
NOT_EQUALS
Deprecated.
in 7.6. Using this operator will have no effect.
|
| Modifier and Type | Method and Description |
|---|---|
static QualityGate.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QualityGate.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final QualityGate.Operator EQUALS
@Deprecated public static final QualityGate.Operator NOT_EQUALS
public static final QualityGate.Operator GREATER_THAN
public static final QualityGate.Operator LESS_THAN
public static QualityGate.Operator[] values()
for (QualityGate.Operator c : QualityGate.Operator.values()) System.out.println(c);
public static QualityGate.Operator 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 null