planetj.database.sql
Class OperatorToken

java.lang.Object
  |
  +--planetj.database.sql.SQLToken
        |
        +--planetj.database.sql.OperatorToken
All Implemented Interfaces:
Serializable

public class OperatorToken
extends SQLToken

Author:
PlanetJ Corporation
See Also:
Serialized Form

Field Summary
static String LIKE
           
static String NOT
           
 
Fields inherited from class planetj.database.sql.SQLToken
WHITE_SPACE
 
Constructor Summary
OperatorToken(String pToken, SQLStatement pStatement)
          OperatorToken constructor comment.
 
Method Summary
 void reverseGreaterThanLessThan()
          If this operation is a comparison involving greater than or less than, the operation is reversed to its logical opposite.
 String toString()
           
 
Methods inherited from class planetj.database.sql.SQLToken
getStatement, getToken, isTokenParameter, isTokenWhiteSpace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

NOT

public static final String NOT
See Also:
Constant Field Values

LIKE

public static final String LIKE
See Also:
Constant Field Values
Constructor Detail

OperatorToken

public OperatorToken(String pToken,
                     SQLStatement pStatement)
OperatorToken constructor comment.

Parameters:
pToken - java.lang.String
Method Detail

reverseGreaterThanLessThan

public void reverseGreaterThanLessThan()
If this operation is a comparison involving greater than or less than, the operation is reversed to its logical opposite.


toString

public String toString()
Overrides:
toString in class SQLToken