com.google.visualization.datasource.query.parser
Interface QueryParserConstants

All Known Implementing Classes:
QueryParser, QueryParserTokenManager

public interface QueryParserConstants

Token literal values and constants. Generated by org.javacc.parser.OtherFilesGen#start()


Field Summary
static int ALPHANUMERIC
          RegularExpression Id.
static int DECIMAL_LITERAL
          RegularExpression Id.
static int DEFAULT
          Lexical state.
static int DIGIT
          RegularExpression Id.
static int EOF
          End of File.
static int ID
          RegularExpression Id.
static int INTEGER_LITERAL
          RegularExpression Id.
static int KW_AND
          RegularExpression Id.
static int KW_ASC
          RegularExpression Id.
static int KW_AVG
          RegularExpression Id.
static int KW_BY
          RegularExpression Id.
static int KW_CONTAINS
          RegularExpression Id.
static int KW_COUNT
          RegularExpression Id.
static int KW_DATE
          RegularExpression Id.
static int KW_DATEDIFF
          RegularExpression Id.
static int KW_DATETIME
          RegularExpression Id.
static int KW_DAY
          RegularExpression Id.
static int KW_DAYOFWEEK
          RegularExpression Id.
static int KW_DESC
          RegularExpression Id.
static int KW_ENDS
          RegularExpression Id.
static int KW_FALSE
          RegularExpression Id.
static int KW_FORMAT
          RegularExpression Id.
static int KW_GROUP
          RegularExpression Id.
static int KW_HOUR
          RegularExpression Id.
static int KW_IS
          RegularExpression Id.
static int KW_LABEL
          RegularExpression Id.
static int KW_LIKE
          RegularExpression Id.
static int KW_LIMIT
          RegularExpression Id.
static int KW_LOWER
          RegularExpression Id.
static int KW_MATCHES
          RegularExpression Id.
static int KW_MAX
          RegularExpression Id.
static int KW_MILLISECOND
          RegularExpression Id.
static int KW_MIN
          RegularExpression Id.
static int KW_MINUTE
          RegularExpression Id.
static int KW_MONTH
          RegularExpression Id.
static int KW_NO_FORMAT
          RegularExpression Id.
static int KW_NO_VALUES
          RegularExpression Id.
static int KW_NOT
          RegularExpression Id.
static int KW_NOW
          RegularExpression Id.
static int KW_NULL
          RegularExpression Id.
static int KW_OFFSET
          RegularExpression Id.
static int KW_OPTIONS
          RegularExpression Id.
static int KW_OR
          RegularExpression Id.
static int KW_ORDER
          RegularExpression Id.
static int KW_PIVOT
          RegularExpression Id.
static int KW_QUARTER
          RegularExpression Id.
static int KW_SECOND
          RegularExpression Id.
static int KW_SELECT
          RegularExpression Id.
static int KW_SKIPPING
          RegularExpression Id.
static int KW_STARTS
          RegularExpression Id.
static int KW_SUM
          RegularExpression Id.
static int KW_TIMEOFDAY
          RegularExpression Id.
static int KW_TIMESTAMP
          RegularExpression Id.
static int KW_TODATE
          RegularExpression Id.
static int KW_TRUE
          RegularExpression Id.
static int KW_UPPER
          RegularExpression Id.
static int KW_WHERE
          RegularExpression Id.
static int KW_WITH
          RegularExpression Id.
static int KW_YEAR
          RegularExpression Id.
static int LETTER_OR_UNDERSCORE
          RegularExpression Id.
static int OP_ASTERISK
          RegularExpression Id.
static int OP_COMMA
          RegularExpression Id.
static int OP_EQUALS
          RegularExpression Id.
static int OP_GREATER_OR_EQUAL
          RegularExpression Id.
static int OP_GREATER_THAN
          RegularExpression Id.
static int OP_LESS_OR_EQUAL
          RegularExpression Id.
static int OP_LESS_THAN
          RegularExpression Id.
static int OP_LPAREN
          RegularExpression Id.
static int OP_MINUS
          RegularExpression Id.
static int OP_MODULO
          RegularExpression Id.
static int OP_NOT_EQUALS
          RegularExpression Id.
static int OP_PLUS
          RegularExpression Id.
static int OP_RPAREN
          RegularExpression Id.
static int OP_SLASH
          RegularExpression Id.
static int QUOTED_ID
          RegularExpression Id.
static int STRING_LITERAL
          RegularExpression Id.
static String[] tokenImage
          Literal token values.
static int UNEXPECTED_CHAR
          RegularExpression Id.
 

Field Detail

EOF

static final int EOF
End of File.

See Also:
Constant Field Values

KW_SELECT

static final int KW_SELECT
RegularExpression Id.

See Also:
Constant Field Values

KW_WHERE

static final int KW_WHERE
RegularExpression Id.

See Also:
Constant Field Values

KW_GROUP

static final int KW_GROUP
RegularExpression Id.

See Also:
Constant Field Values

KW_PIVOT

static final int KW_PIVOT
RegularExpression Id.

See Also:
Constant Field Values

KW_ORDER

static final int KW_ORDER
RegularExpression Id.

See Also:
Constant Field Values

KW_BY

static final int KW_BY
RegularExpression Id.

See Also:
Constant Field Values

KW_SKIPPING

static final int KW_SKIPPING
RegularExpression Id.

See Also:
Constant Field Values

KW_LIMIT

static final int KW_LIMIT
RegularExpression Id.

See Also:
Constant Field Values

KW_OFFSET

static final int KW_OFFSET
RegularExpression Id.

See Also:
Constant Field Values

KW_LABEL

static final int KW_LABEL
RegularExpression Id.

See Also:
Constant Field Values

KW_FORMAT

static final int KW_FORMAT
RegularExpression Id.

See Also:
Constant Field Values

KW_OPTIONS

static final int KW_OPTIONS
RegularExpression Id.

See Also:
Constant Field Values

KW_ASC

static final int KW_ASC
RegularExpression Id.

See Also:
Constant Field Values

KW_DESC

static final int KW_DESC
RegularExpression Id.

See Also:
Constant Field Values

KW_TRUE

static final int KW_TRUE
RegularExpression Id.

See Also:
Constant Field Values

KW_FALSE

static final int KW_FALSE
RegularExpression Id.

See Also:
Constant Field Values

KW_AND

static final int KW_AND
RegularExpression Id.

See Also:
Constant Field Values

KW_OR

static final int KW_OR
RegularExpression Id.

See Also:
Constant Field Values

KW_NOT

static final int KW_NOT
RegularExpression Id.

See Also:
Constant Field Values

KW_DATE

static final int KW_DATE
RegularExpression Id.

See Also:
Constant Field Values

KW_TIMEOFDAY

static final int KW_TIMEOFDAY
RegularExpression Id.

See Also:
Constant Field Values

KW_DATETIME

static final int KW_DATETIME
RegularExpression Id.

See Also:
Constant Field Values

KW_TIMESTAMP

static final int KW_TIMESTAMP
RegularExpression Id.

See Also:
Constant Field Values

KW_MIN

static final int KW_MIN
RegularExpression Id.

See Also:
Constant Field Values

KW_MAX

static final int KW_MAX
RegularExpression Id.

See Also:
Constant Field Values

KW_AVG

static final int KW_AVG
RegularExpression Id.

See Also:
Constant Field Values

KW_COUNT

static final int KW_COUNT
RegularExpression Id.

See Also:
Constant Field Values

KW_SUM

static final int KW_SUM
RegularExpression Id.

See Also:
Constant Field Values

KW_NO_VALUES

static final int KW_NO_VALUES
RegularExpression Id.

See Also:
Constant Field Values

KW_NO_FORMAT

static final int KW_NO_FORMAT
RegularExpression Id.

See Also:
Constant Field Values

KW_IS

static final int KW_IS
RegularExpression Id.

See Also:
Constant Field Values

KW_NULL

static final int KW_NULL
RegularExpression Id.

See Also:
Constant Field Values

KW_YEAR

static final int KW_YEAR
RegularExpression Id.

See Also:
Constant Field Values

KW_MONTH

static final int KW_MONTH
RegularExpression Id.

See Also:
Constant Field Values

KW_DAY

static final int KW_DAY
RegularExpression Id.

See Also:
Constant Field Values

KW_HOUR

static final int KW_HOUR
RegularExpression Id.

See Also:
Constant Field Values

KW_MINUTE

static final int KW_MINUTE
RegularExpression Id.

See Also:
Constant Field Values

KW_SECOND

static final int KW_SECOND
RegularExpression Id.

See Also:
Constant Field Values

KW_MILLISECOND

static final int KW_MILLISECOND
RegularExpression Id.

See Also:
Constant Field Values

KW_WITH

static final int KW_WITH
RegularExpression Id.

See Also:
Constant Field Values

KW_CONTAINS

static final int KW_CONTAINS
RegularExpression Id.

See Also:
Constant Field Values

KW_STARTS

static final int KW_STARTS
RegularExpression Id.

See Also:
Constant Field Values

KW_ENDS

static final int KW_ENDS
RegularExpression Id.

See Also:
Constant Field Values

KW_MATCHES

static final int KW_MATCHES
RegularExpression Id.

See Also:
Constant Field Values

KW_LIKE

static final int KW_LIKE
RegularExpression Id.

See Also:
Constant Field Values

KW_NOW

static final int KW_NOW
RegularExpression Id.

See Also:
Constant Field Values

KW_DATEDIFF

static final int KW_DATEDIFF
RegularExpression Id.

See Also:
Constant Field Values

KW_QUARTER

static final int KW_QUARTER
RegularExpression Id.

See Also:
Constant Field Values

KW_LOWER

static final int KW_LOWER
RegularExpression Id.

See Also:
Constant Field Values

KW_UPPER

static final int KW_UPPER
RegularExpression Id.

See Also:
Constant Field Values

KW_DAYOFWEEK

static final int KW_DAYOFWEEK
RegularExpression Id.

See Also:
Constant Field Values

KW_TODATE

static final int KW_TODATE
RegularExpression Id.

See Also:
Constant Field Values

ID

static final int ID
RegularExpression Id.

See Also:
Constant Field Values

INTEGER_LITERAL

static final int INTEGER_LITERAL
RegularExpression Id.

See Also:
Constant Field Values

DECIMAL_LITERAL

static final int DECIMAL_LITERAL
RegularExpression Id.

See Also:
Constant Field Values

ALPHANUMERIC

static final int ALPHANUMERIC
RegularExpression Id.

See Also:
Constant Field Values

DIGIT

static final int DIGIT
RegularExpression Id.

See Also:
Constant Field Values

LETTER_OR_UNDERSCORE

static final int LETTER_OR_UNDERSCORE
RegularExpression Id.

See Also:
Constant Field Values

STRING_LITERAL

static final int STRING_LITERAL
RegularExpression Id.

See Also:
Constant Field Values

QUOTED_ID

static final int QUOTED_ID
RegularExpression Id.

See Also:
Constant Field Values

OP_COMMA

static final int OP_COMMA
RegularExpression Id.

See Also:
Constant Field Values

OP_LPAREN

static final int OP_LPAREN
RegularExpression Id.

See Also:
Constant Field Values

OP_RPAREN

static final int OP_RPAREN
RegularExpression Id.

See Also:
Constant Field Values

OP_EQUALS

static final int OP_EQUALS
RegularExpression Id.

See Also:
Constant Field Values

OP_NOT_EQUALS

static final int OP_NOT_EQUALS
RegularExpression Id.

See Also:
Constant Field Values

OP_LESS_THAN

static final int OP_LESS_THAN
RegularExpression Id.

See Also:
Constant Field Values

OP_LESS_OR_EQUAL

static final int OP_LESS_OR_EQUAL
RegularExpression Id.

See Also:
Constant Field Values

OP_GREATER_THAN

static final int OP_GREATER_THAN
RegularExpression Id.

See Also:
Constant Field Values

OP_GREATER_OR_EQUAL

static final int OP_GREATER_OR_EQUAL
RegularExpression Id.

See Also:
Constant Field Values

OP_ASTERISK

static final int OP_ASTERISK
RegularExpression Id.

See Also:
Constant Field Values

OP_PLUS

static final int OP_PLUS
RegularExpression Id.

See Also:
Constant Field Values

OP_MINUS

static final int OP_MINUS
RegularExpression Id.

See Also:
Constant Field Values

OP_SLASH

static final int OP_SLASH
RegularExpression Id.

See Also:
Constant Field Values

OP_MODULO

static final int OP_MODULO
RegularExpression Id.

See Also:
Constant Field Values

UNEXPECTED_CHAR

static final int UNEXPECTED_CHAR
RegularExpression Id.

See Also:
Constant Field Values

DEFAULT

static final int DEFAULT
Lexical state.

See Also:
Constant Field Values

tokenImage

static final String[] tokenImage
Literal token values.



Copyright © 2012 Google. All Rights Reserved.