Uses of Class
com.tangosol.coherence.dsltools.precedence.TokenTable
-
Packages that use TokenTable Package Description com.tangosol.coherence.dslquery Contains packages and classes supporting the Coherence CohQL command line tool.com.tangosol.coherence.dslquery.operator This package contains implementations of theBaseOperator
interface.com.tangosol.coherence.dsltools.precedence This package contains implementations ofOPToken
s.com.tangosol.coherence.dsltools.termlanguage This package contains implementations ofTermLanguage
. -
-
Uses of TokenTable in com.tangosol.coherence.dslquery
Fields in com.tangosol.coherence.dslquery declared as TokenTable Modifier and Type Field Description protected TokenTable
CoherenceQueryLanguage. m_tokenTableExtendedSQL
The extended TokenTable for the full language that resembles SQL.protected TokenTable
CoherenceQueryLanguage. m_tokenTableForFilter
The TokenTable for Filters.protected TokenTable
CoherenceQueryLanguage. m_tokenTableSQL
The TokenTable for the full language that resembles SQL.Methods in com.tangosol.coherence.dslquery that return TokenTable Modifier and Type Method Description TokenTable
CoherenceQueryLanguage. extendedSqlTokenTable()
Return an initialized TokenTable for the full CoherenceQueryLanguage.TokenTable
CoherenceQueryLanguage. filtersTokenTable()
Return an initialized standardTokenTable
known by this CoherenceQueryLanguage.protected TokenTable
CoherenceQueryLanguage. getSqlTokenTable(boolean fExtended)
Return an initialized TokenTable for the full CoherenceQueryLanguage.TokenTable
CoherenceQueryLanguage. sqlTokenTable()
Return an initialized extendedTokenTable
known by this CoherenceQueryLanguage. -
Uses of TokenTable in com.tangosol.coherence.dslquery.operator
Methods in com.tangosol.coherence.dslquery.operator with parameters of type TokenTable Modifier and Type Method Description protected void
BaseOperator. addAliases(TokenTable tokenTable)
Add any aliases of this operator to the specified token table.void
AdditionOperator. addToTokenTable(TokenTable tokenTable)
void
AndOperator. addToTokenTable(TokenTable tokenTable)
abstract void
BaseOperator. addToTokenTable(TokenTable tokenTable)
Add this operator to the givenTokenTable
.void
BetweenOperator. addToTokenTable(TokenTable tokenTable)
void
ContainsAllOperator. addToTokenTable(TokenTable tokenTable)
void
ContainsAnyOperator. addToTokenTable(TokenTable tokenTable)
void
ContainsOperator. addToTokenTable(TokenTable tokenTable)
void
DivisionOperator. addToTokenTable(TokenTable tokenTable)
Add this operator to the givenTokenTable
.void
EqualsOperator. addToTokenTable(TokenTable tokenTable)
void
GreaterEqualsOperator. addToTokenTable(TokenTable tokenTable)
void
GreaterOperator. addToTokenTable(TokenTable tokenTable)
void
ILikeOperator. addToTokenTable(TokenTable tokenTable)
void
InOperator. addToTokenTable(TokenTable tokenTable)
void
LessEqualsOperator. addToTokenTable(TokenTable tokenTable)
void
LessOperator. addToTokenTable(TokenTable tokenTable)
void
LikeOperator. addToTokenTable(TokenTable tokenTable)
void
MultiplicationOperator. addToTokenTable(TokenTable tokenTable)
Add this operator to the givenTokenTable
.void
NotEqualsOperator. addToTokenTable(TokenTable tokenTable)
void
OrOperator. addToTokenTable(TokenTable tokenTable)
void
SubtractionOperator. addToTokenTable(TokenTable tokenTable)
Add this operator to the givenTokenTable
.void
XorOperator. addToTokenTable(TokenTable tokenTable)
-
Uses of TokenTable in com.tangosol.coherence.dsltools.precedence
Fields in com.tangosol.coherence.dsltools.precedence declared as TokenTable Modifier and Type Field Description protected TokenTable
OPScanner. m_tokenTable
The TokenTable that defines the translation from BaseTokens to OPTokensConstructors in com.tangosol.coherence.dsltools.precedence with parameters of type TokenTable Constructor Description OPParser(Reader reader, TokenTable table, Set<CharSequence> setOperators)
Construct a new OPParser that parses the given Reader in the language defined by the given TokenTable.OPParser(String sExper, TokenTable table, Set<CharSequence> setOperators)
Construct a new OPParser that parses the given expression in the language defined by the given TokenTable.OPScanner(TokenTable tokenTable, Set<CharSequence> setOperators)
Construct a new OPScanner using the given TokenTable. -
Uses of TokenTable in com.tangosol.coherence.dsltools.termlanguage
Methods in com.tangosol.coherence.dsltools.termlanguage that return TokenTable Modifier and Type Method Description static TokenTable
TermLanguage. tokenTable()
Return an initialized TokenTable for the Term Language.
-