Serializable
, Comparable<LikeOperator>
, ToSql
public enum LikeOperator extends Enum<LikeOperator> implements ToSql
Modifier and Type | Method | Description |
---|---|---|
static LikeOperator |
from(Token token) |
|
void |
toSql(Appendable a) |
|
static LikeOperator |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static LikeOperator[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
comma, commaNames, doubleQuote, isEmpty, isNotEmpty, nullToEmpty, requireNotEmpty, singleQuote, toSql
public static final LikeOperator Glob
public static final LikeOperator Like
public static final LikeOperator Match
public static final LikeOperator Regexp
public static LikeOperator[] values()
for (LikeOperator c : LikeOperator.values()) System.out.println(c);
public static LikeOperator 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 static LikeOperator from(Token token)
public void toSql(Appendable a) throws IOException
toSql
in interface ToSql
IOException
Copyright © 2018. All rights reserved.