public enum SqlOperator extends Enum<SqlOperator>
Enum Constant and Description |
---|
BETWEEN
Deprecated.
|
EQUALS
=
|
GE
>=
|
GT
>
|
IGNORE
ignore
|
IN
Deprecated.
|
IS_NOT_NULL
is not null
|
IS_NULL
is null
|
LE
<=
|
LIKE
like %value%
|
LIKE_LEFT
like value%
|
LIKE_RIGHT
like %value
|
LT
<
|
NOT_BETWEEN
Deprecated.
|
NOT_EQUALS
!=
|
NOT_IN
Deprecated.
|
NOT_LIKE
not like %value%
|
NOT_LIKE_LEFT
not like value%
|
NOT_LIKE_RIGHT
not like %value
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static SqlOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlOperator IGNORE
public static final SqlOperator GT
public static final SqlOperator GE
public static final SqlOperator LT
public static final SqlOperator LE
public static final SqlOperator LIKE
public static final SqlOperator LIKE_LEFT
public static final SqlOperator LIKE_RIGHT
public static final SqlOperator NOT_LIKE
public static final SqlOperator NOT_LIKE_LEFT
public static final SqlOperator NOT_LIKE_RIGHT
public static final SqlOperator EQUALS
public static final SqlOperator NOT_EQUALS
public static final SqlOperator IS_NULL
public static final SqlOperator IS_NOT_NULL
@Deprecated public static final SqlOperator IN
@Deprecated public static final SqlOperator NOT_IN
@Deprecated public static final SqlOperator BETWEEN
@Deprecated public static final SqlOperator NOT_BETWEEN
public static SqlOperator[] values()
for (SqlOperator c : SqlOperator.values()) System.out.println(c);
public static SqlOperator 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 getValue()
Copyright © 2024. All rights reserved.