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