Class AbstractContentAssistVisitor.DeleteClauseStatementHelper
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.AbstractContentAssistVisitor.DeleteClauseStatementHelper
- All Implemented Interfaces:
AbstractContentAssistVisitor.StatementHelper<DeleteStatement>
- Enclosing class:
AbstractContentAssistVisitor
protected static final class AbstractContentAssistVisitor.DeleteClauseStatementHelper
extends Object
implements AbstractContentAssistVisitor.StatementHelper<DeleteStatement>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AbstractContentAssistVisitorEnclosing visitor instance. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds the JPQL identifier of the clause being scanned by this helper.voidaddInternalClauseProposals(DeleteStatement expression) Adds the JPQL identifier of the internal clause being scanned by this helper.getClause(DeleteStatement expression) Returns the clause being scanned by this helper.Returns theAbstractContentAssistVisitor.StatementHelperthat will scan the following clause, which is based on the grammar and not on the actual existence of the clause in the parsed tree.booleanhasClause(DeleteStatement expression) Determines whether the clause exists in the parsed tree.booleanhasSpaceAfterClause(DeleteStatement expression) Determines whether there is a space (owned by the SELECT statement) after the clause being scanned by this helper.booleanisClauseComplete(DeleteStatement expression) Determines whether the clause being scanned is complete or not.booleanDetermines whether the clause is required in order to make the JPQL query grammatically valid.
-
Field Details
-
visitor
Enclosing visitor instance.
-
-
Constructor Details
-
DeleteClauseStatementHelper
-
-
Method Details
-
addClauseProposals
public void addClauseProposals()Description copied from interface:AbstractContentAssistVisitor.StatementHelperAdds the JPQL identifier of the clause being scanned by this helper.Note: The identifier should not be added directly to the list, it needs to be filtered out based on the location of the cursor, it can be within a word.
- Specified by:
addClauseProposalsin interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>
-
addInternalClauseProposals
Description copied from interface:AbstractContentAssistVisitor.StatementHelperAdds the JPQL identifier of the internal clause being scanned by this helper. For instance, theFROMclause could add its own sub-clauses.Note: The identifier should not be added directly to the list, it needs to be filtered out based on the location of the cursor, it can be within a word.
- Specified by:
addInternalClauseProposalsin interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Parameters:
expression- TheAbstractSelectStatementbeing visited
-
getClause
Description copied from interface:AbstractContentAssistVisitor.StatementHelperReturns the clause being scanned by this helper. It is safe to type cast the clause becauseAbstractContentAssistVisitor.StatementHelper.hasClause(Expression)is called before this one.- Specified by:
getClausein interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Parameters:
expression- TheAbstractSelectStatementbeing visited- Returns:
- The clause being scanned
-
getNextHelper
Description copied from interface:AbstractContentAssistVisitor.StatementHelperReturns theAbstractContentAssistVisitor.StatementHelperthat will scan the following clause, which is based on the grammar and not on the actual existence of the clause in the parsed tree.- Specified by:
getNextHelperin interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Returns:
- The
AbstractContentAssistVisitor.StatementHelperfor the next clause
-
hasClause
Description copied from interface:AbstractContentAssistVisitor.StatementHelperDetermines whether the clause exists in the parsed tree.- Specified by:
hasClausein interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Parameters:
expression- TheAbstractSelectStatementbeing visited- Returns:
trueif the clause has been parsed;falseotherwise
-
hasSpaceAfterClause
Description copied from interface:AbstractContentAssistVisitor.StatementHelperDetermines whether there is a space (owned by the SELECT statement) after the clause being scanned by this helper.- Specified by:
hasSpaceAfterClausein interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Parameters:
expression- TheAbstractSelectStatementbeing visited- Returns:
trueif a space follows the clause;falseotherwise
-
isClauseComplete
Description copied from interface:AbstractContentAssistVisitor.StatementHelperDetermines whether the clause being scanned is complete or not.- Specified by:
isClauseCompletein interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Parameters:
expression- TheAbstractSelectStatementbeing visited- Returns:
trueif the clause is complete;falseotherwise
-
isRequired
public boolean isRequired()Description copied from interface:AbstractContentAssistVisitor.StatementHelperDetermines whether the clause is required in order to make the JPQL query grammatically valid.- Specified by:
isRequiredin interfaceAbstractContentAssistVisitor.StatementHelper<DeleteStatement>- Returns:
trueif the clause has to be defined;falseif the clause is optional
-