public static enum NumericAttributeCondition.Operator extends Enum<NumericAttributeCondition.Operator>
Enum Constant and Description |
---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
LESS_THAN |
LESS_THAN_OR_EQUAL |
Modifier and Type | Method and Description |
---|---|
static NumericAttributeCondition.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericAttributeCondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericAttributeCondition.Operator LESS_THAN
public static final NumericAttributeCondition.Operator LESS_THAN_OR_EQUAL
public static final NumericAttributeCondition.Operator EQUAL
public static final NumericAttributeCondition.Operator GREATER_THAN_OR_EQUAL
public static final NumericAttributeCondition.Operator GREATER_THAN
public static NumericAttributeCondition.Operator[] values()
for (NumericAttributeCondition.Operator c : NumericAttributeCondition.Operator.values()) System.out.println(c);
public static NumericAttributeCondition.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 nullCopyright © 2010–2025 Open Identity Platform Community. All rights reserved.