public enum RelationalOperator extends Enum<RelationalOperator> implements ConditionalOperator
| Enum Constant and Description |
|---|
BETWEEN |
IN |
NOT_BETWEEN |
NOT_IN |
| Modifier and Type | Method and Description |
|---|---|
void |
appendTo(SafeSqlAppendable builder) |
SafeSql |
toSafeSql() |
String |
toString() |
static RelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationalOperator IN
public static final RelationalOperator NOT_IN
public static final RelationalOperator BETWEEN
public static final RelationalOperator NOT_BETWEEN
public static RelationalOperator[] values()
for (RelationalOperator c : RelationalOperator.values()) System.out.println(c);
public static RelationalOperator 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 toString()
toString in class Enum<RelationalOperator>public SafeSql toSafeSql()
toSafeSql in interface SafeSqlizablepublic void appendTo(SafeSqlAppendable builder)
appendTo in interface SafeSqlizableCopyright © 2017. All rights reserved.