Package 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:
java.io.Serializable
,java.lang.Comparable<SQLWhereClauseTermElement.SQL_OPERATORS>
- Enclosing class:
- SQLWhereClauseTermElement
public static enum SQLWhereClauseTermElement.SQL_OPERATORS extends java.lang.Enum<SQLWhereClauseTermElement.SQL_OPERATORS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEEN
CONTAINS
ENDS_WITH
EQUALS
FALSE
GREATER_THAN
GREATER_THAN_OR_EQUAL
IGNORE
IN_LIST
LESS_THAN
LESS_THAN_OR_EQUAL
LIKE
NOT_CONTAINS
NOT_ENDS_WITH
NOT_EQUALS
NOT_IN_LIST
NOT_LIKE
NOT_NULL
NOT_STARTS_WITH
NULL
STARTS_WITH
TRUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPlaceholdersCount()
static SQLWhereClauseTermElement.SQL_OPERATORS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SQLWhereClauseTermElement.SQL_OPERATORS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
NOT_STARTS_WITH
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_STARTS_WITH
-
ENDS_WITH
public static final SQLWhereClauseTermElement.SQL_OPERATORS ENDS_WITH
-
NOT_ENDS_WITH
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_ENDS_WITH
-
CONTAINS
public static final SQLWhereClauseTermElement.SQL_OPERATORS CONTAINS
-
NOT_CONTAINS
public static final SQLWhereClauseTermElement.SQL_OPERATORS NOT_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
-
-
Method Detail
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getPlaceholdersCount
public int getPlaceholdersCount()
-
-