Ontimize 5.2072EN

com.ontimize.db
Class SQLStatementBuilder.BasicOperator

java.lang.Object
  extended bycom.ontimize.db.SQLStatementBuilder.BasicOperator
All Implemented Interfaces:
java.io.Serializable, SQLStatementBuilder.Operator
Direct Known Subclasses:
ContainsOperator
Enclosing class:
SQLStatementBuilder

public static class SQLStatementBuilder.BasicOperator
extends java.lang.Object
implements SQLStatementBuilder.Operator

Default implementation of Operator interfaces.

Author:
Imatia Innovation S.L
See Also:
SQLStatementBuilder.ExtendedSQLConditionValuesProcessor, Serialized Form

Field Summary
static java.lang.String AND
           
static java.lang.String AND_NOT
           
static SQLStatementBuilder.Operator AND_NOT_OP
           
static SQLStatementBuilder.Operator AND_OP
           
static java.lang.String EQUAL
           
static SQLStatementBuilder.Operator EQUAL_OP
           
static SQLStatementBuilder.Operator IN_OP
           
static java.lang.String LESS
           
static java.lang.String LESS_EQUAL
           
static SQLStatementBuilder.Operator LESS_EQUAL_OP
           
static SQLStatementBuilder.Operator LESS_OP
           
static java.lang.String LIKE
           
static SQLStatementBuilder.Operator LIKE_OP
           
static java.lang.String MORE
           
static java.lang.String MORE_EQUAL
           
static SQLStatementBuilder.Operator MORE_EQUAL_OP
           
static SQLStatementBuilder.Operator MORE_OP
           
static java.lang.String NOT_EQUAL
           
static SQLStatementBuilder.Operator NOT_EQUAL_OP
           
static java.lang.String NOT_LIKE
           
static SQLStatementBuilder.Operator NOT_LIKE_OP
           
static java.lang.String NOT_NULL
           
static SQLStatementBuilder.Operator NOT_NULL_OP
           
static java.lang.String NULL
           
static SQLStatementBuilder.Operator NULL_OP
           
protected  java.lang.String operator
           
static java.lang.String OR
           
static java.lang.String OR_NOT
           
static SQLStatementBuilder.Operator OR_NOT_OP
           
static SQLStatementBuilder.Operator OR_OP
           
 
Constructor Summary
SQLStatementBuilder.BasicOperator(java.lang.String op)
           
 
Method Summary
 boolean equals(java.lang.Object o)
           
 int hashCode()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

OR

public static java.lang.String OR

AND

public static java.lang.String AND

OR_NOT

public static java.lang.String OR_NOT

AND_NOT

public static java.lang.String AND_NOT

LESS

public static final java.lang.String LESS
See Also:
Constant Field Values

LESS_EQUAL

public static final java.lang.String LESS_EQUAL
See Also:
Constant Field Values

EQUAL

public static final java.lang.String EQUAL
See Also:
Constant Field Values

MORE_EQUAL

public static final java.lang.String MORE_EQUAL
See Also:
Constant Field Values

MORE

public static final java.lang.String MORE
See Also:
Constant Field Values

NULL

public static final java.lang.String NULL
See Also:
Constant Field Values

NOT_EQUAL

public static final java.lang.String NOT_EQUAL
See Also:
Constant Field Values

NOT_NULL

public static final java.lang.String NOT_NULL
See Also:
Constant Field Values

LIKE

public static final java.lang.String LIKE
See Also:
Constant Field Values

NOT_LIKE

public static final java.lang.String NOT_LIKE
See Also:
Constant Field Values

OR_OP

public static SQLStatementBuilder.Operator OR_OP

AND_OP

public static SQLStatementBuilder.Operator AND_OP

OR_NOT_OP

public static SQLStatementBuilder.Operator OR_NOT_OP

AND_NOT_OP

public static SQLStatementBuilder.Operator AND_NOT_OP

LESS_OP

public static SQLStatementBuilder.Operator LESS_OP

LESS_EQUAL_OP

public static SQLStatementBuilder.Operator LESS_EQUAL_OP

EQUAL_OP

public static SQLStatementBuilder.Operator EQUAL_OP

MORE_EQUAL_OP

public static SQLStatementBuilder.Operator MORE_EQUAL_OP

MORE_OP

public static SQLStatementBuilder.Operator MORE_OP

NULL_OP

public static SQLStatementBuilder.Operator NULL_OP

NOT_EQUAL_OP

public static SQLStatementBuilder.Operator NOT_EQUAL_OP

IN_OP

public static SQLStatementBuilder.Operator IN_OP

NOT_NULL_OP

public static SQLStatementBuilder.Operator NOT_NULL_OP

LIKE_OP

public static SQLStatementBuilder.Operator LIKE_OP

NOT_LIKE_OP

public static SQLStatementBuilder.Operator NOT_LIKE_OP

operator

protected java.lang.String operator
Constructor Detail

SQLStatementBuilder.BasicOperator

public SQLStatementBuilder.BasicOperator(java.lang.String op)
Method Detail

toString

public java.lang.String toString()
Specified by:
toString in interface SQLStatementBuilder.Operator

equals

public boolean equals(java.lang.Object o)

hashCode

public int hashCode()

Ontimize