public enum NumericRelationType extends Enum<NumericRelationType>
| Modifier and Type | Method and Description |
|---|---|
static NumericRelationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericRelationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericRelationType EQ
public static final NumericRelationType LT
public static final NumericRelationType LE
public static final NumericRelationType GT
public static final NumericRelationType GE
public static final NumericRelationType NOT_EQ
public static final NumericRelationType BETWEEN
public static NumericRelationType[] values()
for (NumericRelationType c : NumericRelationType.values()) System.out.println(c);
public static NumericRelationType 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 © 2017 etc.to. All rights reserved.