public static enum Conditions.ConditionMode extends Enum<Conditions.ConditionMode>
| Enum Constant and Description |
|---|
ABS_EQUALS |
ABS_GREATER_OR_EQUAL |
ABS_GREATER_THAN |
ABS_LESS_THAN |
ABS_LESS_THAN_OR_EQUAL |
AGGREGATE |
EPSILON_EQUALS |
EPSILON_NOT_EQUALS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IS_FINITE |
IS_INFINITE |
IS_NAN |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUALS |
NOT_FINITE |
| Modifier and Type | Field and Description |
|---|---|
int |
index |
| Modifier and Type | Method and Description |
|---|---|
static Conditions.ConditionMode |
fromNumber(int index) |
static Conditions.ConditionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conditions.ConditionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conditions.ConditionMode EPSILON_EQUALS
public static final Conditions.ConditionMode EPSILON_NOT_EQUALS
public static final Conditions.ConditionMode LESS_THAN
public static final Conditions.ConditionMode GREATER_THAN
public static final Conditions.ConditionMode LESS_THAN_OR_EQUAL
public static final Conditions.ConditionMode GREATER_THAN_OR_EQUAL
public static final Conditions.ConditionMode ABS_LESS_THAN
public static final Conditions.ConditionMode ABS_GREATER_THAN
public static final Conditions.ConditionMode IS_INFINITE
public static final Conditions.ConditionMode IS_NAN
public static final Conditions.ConditionMode ABS_EQUALS
public static final Conditions.ConditionMode NOT_EQUALS
public static final Conditions.ConditionMode ABS_GREATER_OR_EQUAL
public static final Conditions.ConditionMode ABS_LESS_THAN_OR_EQUAL
public static final Conditions.ConditionMode IS_FINITE
public static final Conditions.ConditionMode NOT_FINITE
public static final Conditions.ConditionMode AGGREGATE
public static Conditions.ConditionMode[] values()
for (Conditions.ConditionMode c : Conditions.ConditionMode.values()) System.out.println(c);
public static Conditions.ConditionMode 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 Conditions.ConditionMode fromNumber(int index)
Copyright © 2022. All rights reserved.