Class AbstractQueryPlusStatementBuilder
- java.lang.Object
-
- com.tangosol.coherence.dslquery.queryplus.AbstractQueryPlusStatementBuilder
-
- All Implemented Interfaces:
StatementBuilder<Statement>
- Direct Known Subclasses:
CommandsStatementBuilder
,ExtendedLanguageStatementBuilder
,HelpStatementBuilder
,SanityCheckStatementBuilder
,ServicesStatementBuilder
,SetTimeoutStatementBuilder
,TraceStatementBuilder
,WheneverStatementBuilder
public abstract class AbstractQueryPlusStatementBuilder extends Object implements StatementBuilder<Statement>
This is the base class for command builders that are specific to the QueryPlus tool rather than general CohQL statements.- Since:
- Coherence 12.2.1
- Author:
- jk 2014.01.06
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
AbstractQueryPlusStatementBuilder.AbstractOPToken
AnOPToken
implementation that holds the name of the functor associated to an OPToken.class
AbstractQueryPlusStatementBuilder.AbstractStatement
An abstract base class that allows sub classes to implement the applicable methods onStatement
.
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractQueryPlusStatementBuilder()
Construct a AbstractQueryPlusStatementBuilder.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract AbstractQueryPlusStatementBuilder.AbstractOPToken
instantiateOpToken()
Return the OPToken for this command.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.tangosol.coherence.dslquery.StatementBuilder
getDescription, getSyntax, realize
-
-
-
-
Method Detail
-
instantiateOpToken
public abstract AbstractQueryPlusStatementBuilder.AbstractOPToken instantiateOpToken()
Return the OPToken for this command.- Returns:
- the OPToken for this command
-
-