public static enum Index.ConstraintType extends Enum<Index.ConstraintType>
Enum Constant and Description |
---|
EQUAL |
GREATER_OR_EQUAL |
GREATER_THAN |
LESS_OR_EQUAL |
LESS_THAN |
NOT_EQUAL |
RANGE |
Modifier and Type | Method and Description |
---|---|
static Index.ConstraintType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Index.ConstraintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Index.ConstraintType EQUAL
public static final Index.ConstraintType NOT_EQUAL
public static final Index.ConstraintType GREATER_THAN
public static final Index.ConstraintType GREATER_OR_EQUAL
public static final Index.ConstraintType LESS_THAN
public static final Index.ConstraintType LESS_OR_EQUAL
public static final Index.ConstraintType RANGE
public static Index.ConstraintType[] values()
for (Index.ConstraintType c : Index.ConstraintType.values()) System.out.println(c);
public static Index.ConstraintType 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 © 2001–2018 JBoss by Red Hat. All rights reserved.