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