com.im.commons.db.dml
Enum SQLWhereClauseTermElement.SQL_OPERATORS
java.lang.Object
java.lang.Enum<SQLWhereClauseTermElement.SQL_OPERATORS>
com.im.commons.db.dml.SQLWhereClauseTermElement.SQL_OPERATORS
- All Implemented Interfaces:
- Serializable, Comparable<SQLWhereClauseTermElement.SQL_OPERATORS>
- Enclosing class:
- SQLWhereClauseTermElement
public static enum SQLWhereClauseTermElement.SQL_OPERATORS
- extends Enum<SQLWhereClauseTermElement.SQL_OPERATORS>
EQUALS
public static final SQLWhereClauseTermElement.SQL_OPERATORS EQUALS
NOT_EQUALS
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_EQUALS
GREATER_THAN
public static final SQLWhereClauseTermElement.SQL_OPERATORS GREATER_THAN
LESS_THAN
public static final SQLWhereClauseTermElement.SQL_OPERATORS LESS_THAN
GREATER_THAN_OR_EQUAL
public static final SQLWhereClauseTermElement.SQL_OPERATORS GREATER_THAN_OR_EQUAL
LESS_THAN_OR_EQUAL
public static final SQLWhereClauseTermElement.SQL_OPERATORS LESS_THAN_OR_EQUAL
BETWEEN
public static final SQLWhereClauseTermElement.SQL_OPERATORS BETWEEN
LIKE
public static final SQLWhereClauseTermElement.SQL_OPERATORS LIKE
NOT_LIKE
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_LIKE
IN_LIST
public static final SQLWhereClauseTermElement.SQL_OPERATORS IN_LIST
NOT_IN_LIST
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_IN_LIST
STARTS_WITH
public static final SQLWhereClauseTermElement.SQL_OPERATORS STARTS_WITH
ENDS_WITH
public static final SQLWhereClauseTermElement.SQL_OPERATORS ENDS_WITH
CONTAINS
public static final SQLWhereClauseTermElement.SQL_OPERATORS CONTAINS
NULL
public static final SQLWhereClauseTermElement.SQL_OPERATORS NULL
NOT_NULL
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_NULL
TRUE
public static final SQLWhereClauseTermElement.SQL_OPERATORS TRUE
FALSE
public static final SQLWhereClauseTermElement.SQL_OPERATORS FALSE
IGNORE
public static final SQLWhereClauseTermElement.SQL_OPERATORS IGNORE
values
public static SQLWhereClauseTermElement.SQL_OPERATORS[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SQLWhereClauseTermElement.SQL_OPERATORS c : SQLWhereClauseTermElement.SQL_OPERATORS.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SQLWhereClauseTermElement.SQL_OPERATORS valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null