@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:01.277Z") @Stability(value=Experimental) public enum ComparisonOperator extends Enum<ComparisonOperator>
| Enum Constant and Description |
|---|
GREATER_THAN_OR_EQUAL_TO_THRESHOLD
(experimental) Specified statistic is greater than or equal to the threshold.
|
GREATER_THAN_THRESHOLD
(experimental) Specified statistic is strictly greater than the threshold.
|
GREATER_THAN_UPPER_THRESHOLD
(experimental) Specified statistic is greater than the anomaly model band.
|
LESS_THAN_LOWER_OR_GREATER_THAN_UPPER_THRESHOLD
(experimental) Specified statistic is lower than or greater than the anomaly model band.
|
LESS_THAN_LOWER_THRESHOLD
(experimental) Specified statistic is lower than the anomaly model band.
|
LESS_THAN_OR_EQUAL_TO_THRESHOLD
(experimental) Specified statistic is less than or equal to the threshold.
|
LESS_THAN_THRESHOLD
(experimental) Specified statistic is strictly less than the threshold.
|
| Modifier and Type | Method and Description |
|---|---|
static ComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final ComparisonOperator GREATER_THAN_OR_EQUAL_TO_THRESHOLD
@Stability(value=Experimental) public static final ComparisonOperator GREATER_THAN_THRESHOLD
@Stability(value=Experimental) public static final ComparisonOperator LESS_THAN_THRESHOLD
@Stability(value=Experimental) public static final ComparisonOperator LESS_THAN_OR_EQUAL_TO_THRESHOLD
@Stability(value=Experimental) public static final ComparisonOperator LESS_THAN_LOWER_OR_GREATER_THAN_UPPER_THRESHOLD
Used only for alarms based on anomaly detection models
@Stability(value=Experimental) public static final ComparisonOperator GREATER_THAN_UPPER_THRESHOLD
Used only for alarms based on anomaly detection models
@Stability(value=Experimental) public static final ComparisonOperator LESS_THAN_LOWER_THRESHOLD
Used only for alarms based on anomaly detection models
public static ComparisonOperator[] values()
for (ComparisonOperator c : ComparisonOperator.values()) System.out.println(c);
public static ComparisonOperator 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 © 2021. All rights reserved.