com.im.commons.db 5.9.2

com.im.commons.db.dml
Enum SQLWhereClauseTermElement.SQL_OPERATORS

java.lang.Object
  extended by java.lang.Enum<SQLWhereClauseTermElement.SQL_OPERATORS>
      extended by 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>


Enum Constant Summary
BETWEEN
           
CONTAINS
           
ENDS_WITH
           
EQUALS
           
FALSE
           
GREATER_THAN
           
GREATER_THAN_OR_EQUAL
           
IGNORE
           
IN_LIST
           
LESS_THAN
           
LESS_THAN_OR_EQUAL
           
LIKE
           
NOT_EQUALS
           
NOT_IN_LIST
           
NOT_LIKE
           
NOT_NULL
           
NULL
           
STARTS_WITH
           
TRUE
           
 
Method Summary
static SQLWhereClauseTermElement.SQL_OPERATORS valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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

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
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(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

com.im.commons.db 5.9.2