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