public static enum Operator.Name extends Enum<Operator.Name>
| Enum Constant and Description |
|---|
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
IS_NOT_NULL |
IS_NULL |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
LIKE |
NOT_EQUAL_TO |
| Modifier and Type | Method and Description |
|---|---|
String |
getOperatorName() |
static Operator.Name |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator.Name[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator.Name EQUAL_TO
public static final Operator.Name NOT_EQUAL_TO
public static final Operator.Name GREATER_THAN
public static final Operator.Name GREATER_THAN_OR_EQUAL_TO
public static final Operator.Name LESS_THAN
public static final Operator.Name LESS_THAN_OR_EQUAL_TO
public static final Operator.Name LIKE
public static final Operator.Name IS_NULL
public static final Operator.Name IS_NOT_NULL
public static Operator.Name[] values()
for (Operator.Name c : Operator.Name.values()) System.out.println(c);
public static Operator.Name 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 nullpublic String getOperatorName()
Copyright © 2013. All rights reserved.