planetj.database.sql
Class ColumnFunctionToken

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

public class ColumnFunctionToken
extends SQLToken

Author:
PlanetJ Corporation (Paul Holm) Column Functions from the SQL language guide (http://www.as400.ibm.com/developer/db2/db2common.html#group500) Used when parsing SQL
See Also:
Serialized Form

Field Summary
static String AS
           
static String AVG
           
static String CAST
           
static String COUNT
           
static String DISTINCT
           
static String MAX
           
static String MIN
           
static String SUM
           
 
Fields inherited from class planetj.database.sql.SQLToken
WHITE_SPACE
 
Constructor Summary
ColumnFunctionToken(String pToken, SQLStatement pStatement)
          OperatorToken constructor comment.
 
Method Summary
 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

AS

public static final String AS
See Also:
Constant Field Values

AVG

public static final String AVG
See Also:
Constant Field Values

CAST

public static final String CAST
See Also:
Constant Field Values

COUNT

public static final String COUNT
See Also:
Constant Field Values

DISTINCT

public static final String DISTINCT
See Also:
Constant Field Values

MAX

public static final String MAX
See Also:
Constant Field Values

MIN

public static final String MIN
See Also:
Constant Field Values

SUM

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

ColumnFunctionToken

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

Parameters:
pToken - java.lang.String
Method Detail

toString

public String toString()
Overrides:
toString in class SQLToken