Class CreateSnapshotStatementBuilder
java.lang.Object
com.tangosol.coherence.dslquery.statement.AbstractStatementBuilder<CreateSnapshotStatementBuilder.CreateSnapshotStatement>
com.tangosol.coherence.dslquery.statement.persistence.CreateSnapshotStatementBuilder
- All Implemented Interfaces:
StatementBuilder<CreateSnapshotStatementBuilder.CreateSnapshotStatement>
public class CreateSnapshotStatementBuilder
extends AbstractStatementBuilder<CreateSnapshotStatementBuilder.CreateSnapshotStatement>
An implementation of a
StatementBuilder
that parses a CohQL term tree to produce an instance of a CreateSnapshotStatementBuilder.CreateSnapshotStatement
.- Since:
- Coherence 12.2.1
- Author:
- tam 2014.08.04
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Implementation of the CohQL "CREATE SNAPSHOT" command. -
Field Summary
Modifier and TypeFieldDescriptionstatic final CreateSnapshotStatementBuilder
An instance ofCreateSnapshotStatementBuilder
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn a description of the CohQL command suitable for displaying as help text.Return the syntax of the CohQL command.realize
(ExecutionContext ctx, NodeTerm term, List listBindVars, ParameterResolver namedBindVars) Realizes an implementation of aStatement
that can be executed to perform a specific CohQL command.Methods inherited from class com.tangosol.coherence.dslquery.statement.AbstractStatementBuilder
atomicStringValueOf, ensureFilter, getAlias, getCacheName, getExtractor, getFields, getFile, getGroupBy, getInsertKey, getInsertValue, getIsDistinct, getSetList, getWhere, headsMatch
-
Field Details
-
INSTANCE
An instance ofCreateSnapshotStatementBuilder
.
-
-
Constructor Details
-
CreateSnapshotStatementBuilder
public CreateSnapshotStatementBuilder()
-
-
Method Details
-
realize
public CreateSnapshotStatementBuilder.CreateSnapshotStatement realize(ExecutionContext ctx, NodeTerm term, List listBindVars, ParameterResolver namedBindVars) Description copied from interface:StatementBuilder
Realizes an implementation of aStatement
that can be executed to perform a specific CohQL command.- Parameters:
ctx
- theExecutionContext
to use to create commandsterm
- the parsedNodeTerm
used to create the relevant StatementlistBindVars
- the indexed bind variablesnamedBindVars
- the named bind variables- Returns:
- an executable instance of a Statement
-
getSyntax
Description copied from interface:StatementBuilder
Return the syntax of the CohQL command.- Returns:
- the syntax of the CohQL command
-
getDescription
Description copied from interface:StatementBuilder
Return a description of the CohQL command suitable for displaying as help text.- Returns:
- a description of the CohQL command suitable for displaying as help text
-