ComparisonType
public final class ComparisonType
For determining when a threshold has been met or exceeded in a DataTypeCondition.
Summary
Public fields |
|
|---|---|
static final @NonNull ComparisonType |
The comparison should be |
static final @NonNull ComparisonType |
The comparison should be |
static final @NonNull ComparisonType |
The comparison should be |
static final @NonNull ComparisonType |
The comparison should be |
static final @NonNull ComparisonType |
The comparison type is unknown, or this library version is too old to recognize it. |
Public methods |
|
|---|---|
boolean |
|
final int |
getId() |
final @NonNull String |
getName() |
int |
hashCode() |
@NonNull String |
toString() |
Public fields
GREATER_THAN
public static final @NonNull ComparisonType GREATER_THAN
The comparison should be currentValue > threshold.
GREATER_THAN_OR_EQUAL
public static final @NonNull ComparisonType GREATER_THAN_OR_EQUAL
The comparison should be currentValue >= threshold.
LESS_THAN
public static final @NonNull ComparisonType LESS_THAN
The comparison should be currentValue < threshold.
LESS_THAN_OR_EQUAL
public static final @NonNull ComparisonType LESS_THAN_OR_EQUAL
The comparison should be currentValue <= threshold.
UNKNOWN
public static final @NonNull ComparisonType UNKNOWN
The comparison type is unknown, or this library version is too old to recognize it.