Class CollectionMemberDeclarationStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.CollectionMemberDeclarationStateObject
- All Implemented Interfaces:
StateObject,VariableDeclarationStateObject
public class CollectionMemberDeclarationStateObject
extends AbstractStateObject
implements VariableDeclarationStateObject
An identification variable declared by a
or
collection_member_declaration ranges over
values of a collection obtained by navigation using a path expression. Such a path expression
represents a navigation involving the association-fields of an entity abstract schema type.
Because a path expression can be based on another path expression, the navigation can use the
association-fields of related entities. An identification variable of a collection member
declaration is declared using a special operator, the reserved identifier IN.
The argument to the IN operator is a collection-valued path expression. The
path expression evaluates to a collection type specified as a result of navigation to a
collection-valued association-field of an entity abstract schema type. The syntax for declaring a
collection member identification variable is as follows:
BNF: collection_member_declaration ::= IN(collection_valued_path_expression) [AS] identification_variable
BNF: derived_collection_member_declaration ::= IN superquery_identification_variable.{single_valued_object_field.}*collection_valued_field
- Since:
- 2.4
- Version:
- 2.5
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringNotifies the visibility of theASidentifier has changed. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newCollectionMemberDeclarationStateObject.CollectionMemberDeclarationStateObject(AbstractFromClauseStateObject parent, ListIterator<String> paths, boolean as, String identificationVariable) Creates a newCollectionMemberDeclarationStateObject.CollectionMemberDeclarationStateObject(AbstractFromClauseStateObject parent, ListIterator<String> paths, String identificationVariable) Creates a newCollectionMemberDeclarationStateObject.CollectionMemberDeclarationStateObject(SimpleFromClauseStateObject parent, String collectionValuedPath) Creates a newCollectionMemberDeclarationStateObject. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(StateObjectVisitor visitor) Visits thisStateObjectby the givenvisitor.addAs()Makes sure theASidentifier is specified.protected voidaddChildren(List<StateObject> children) Adds the children of thisStateObjectto the given list.Returns the model object representing the collection-valued association-field of an entity abstract schema type.Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.Returns the model object representing an identification variable evaluating to a collection-valued association-field of an entity abstract schema type.getManagedType(StateObject stateObject) Returns theIManagedTypefor the given identification variable.Returns the parent of thisStateObject.booleanhasAs()Determines whether theASidentifier is used or not.booleanDetermines whether an identification variable was defined.Returns theIdentificationVariableStateObjectthat are used by this state object.protected voidInitializes this state object.booleanDetermines whether this collection member declaration is used as a derived collection-valued path expression.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.voidremoveAs()Makes sure theASidentifier is not specified.voidsetAs(boolean as) Sets whether theASidentifier is used or not.voidsetDerived(boolean derived) Sets whether this collection member declaration is used as a derived collection-valued path expression.voidsetExpression(CollectionMemberDeclaration expression) Keeps a reference of theparsed objectobject, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects.voidsetIdentificationVariable(String identificationVariable) Sets the new identification variable that will range over the collection-valued path.voidChanges the path expression with the list of segments, the identification variable will also be updated with the first segment.voidChanges the path expression with the list of segments, the identification variable will also be updated with the first segment.voidChanges the path expression with the list of segments, the identification variable will also be updated with the first segment.voidsetPaths(ListIterator<String> paths) Changes the path expression with the list of segments, the identification variable will also be updated with the first segment.voidtoggleAs()Toggles the usage of theASidentifier.protected voidtoTextInternal(Appendable writer) Prints out a string representation of thisStateObject, which should not be used to define atruestring representation of a JPQL query but should be used for debugging purposes.Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
acceptUnknownVisitor, acceptUnknownVisitor, addProblems, addPropertyChangeListener, areEquivalent, buildProblem, buildProblem, buildStateObject, buildStateObjects, checkParent, children, decorate, equals, findIdentificationVariable, firePropertyChanged, getChangeSupport, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toTextMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.persistence.jpa.jpql.tools.model.query.StateObject
addPropertyChangeListener, children, decorate, findIdentificationVariable, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getQueryBuilder, getRoot, isDecorated, removePropertyChangeListener, setParent, toString, toText
-
Field Details
-
AS_PROPERTY
Notifies the visibility of theASidentifier has changed.- See Also:
-
-
Constructor Details
-
CollectionMemberDeclarationStateObject
Creates a newCollectionMemberDeclarationStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
CollectionMemberDeclarationStateObject
public CollectionMemberDeclarationStateObject(AbstractFromClauseStateObject parent, ListIterator<String> paths, boolean as, String identificationVariable) Creates a newCollectionMemberDeclarationStateObject.- Parameters:
parent- The parent of this state object, which cannot benullpaths- The segments that represent the collection-valued pathas- Determine whether theASidentifier is used or notidentificationVariable- The identification variable declaring the collection-valued path- Throws:
NullPointerException- The given parent cannot benull
-
CollectionMemberDeclarationStateObject
public CollectionMemberDeclarationStateObject(AbstractFromClauseStateObject parent, ListIterator<String> paths, String identificationVariable) Creates a newCollectionMemberDeclarationStateObject.- Parameters:
parent- The parent of this state object, which cannot benullpaths- The segments that represent the collection-valued pathidentificationVariable- The identification variable declaring the collection-valued path- Throws:
NullPointerException- The given parent cannot benull
-
CollectionMemberDeclarationStateObject
public CollectionMemberDeclarationStateObject(SimpleFromClauseStateObject parent, String collectionValuedPath) Creates a newCollectionMemberDeclarationStateObject.- Parameters:
parent- The parent of this state object, which cannot benullcollectionValuedPath- The derived collection-valued path expression- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Details
-
accept
Description copied from interface:StateObjectVisits thisStateObjectby the givenvisitor.- Specified by:
acceptin interfaceStateObject- Parameters:
visitor- Thevisitorto visit this object
-
addAs
Makes sure theASidentifier is specified.- Returns:
- This object
-
addChildren
Description copied from class:AbstractStateObjectAdds the children of thisStateObjectto the given list.- Overrides:
addChildrenin classAbstractStateObject- Parameters:
children- The list used to store the children
-
getCollectionValuedPath
Returns the model object representing the collection-valued association-field of an entity abstract schema type.- Returns:
- The collection-valued association-field of an entity abstract schema type
-
getExpression
Description copied from interface:StateObjectReturns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.- Specified by:
getExpressionin interfaceStateObject- Overrides:
getExpressionin classAbstractStateObject- Returns:
- The parsed object when a JPQL query is parsed and converted into a
StateObjectornullwhen the JPQL query is manually created (i.e. not from a string)
-
getIdentificationVariable
Returns the model object representing an identification variable evaluating to a collection-valued association-field of an entity abstract schema type.- Returns:
- The identification variable portion of this declaration
-
getManagedType
Description copied from interface:VariableDeclarationStateObjectReturns theIManagedTypefor the given identification variable. The search does not traverse up the query hierarchy if this declaration is for a subquery.
In the above query, the managed type associated with the identification variable:SELECT e FROM Department d JOIN KEY(d.employees).addresses a- d is "Department"
- a is "Address"
- Specified by:
getManagedTypein interfaceVariableDeclarationStateObject- Parameters:
stateObject- TheStateObjectthat should be an simple identification variable or an encapsulated identification variable with the identifierKEYorVALUE- Returns:
- The
IManagedTyperepresenting the domain object declared by the given identification variable
-
getParent
Description copied from interface:StateObjectReturns the parent of thisStateObject.- Specified by:
getParentin interfaceStateObject- Overrides:
getParentin classAbstractStateObject- Returns:
- Returns the parent of this
StateObject, which isnullonly when this is the root of the hierarchy
-
hasAs
public boolean hasAs()Determines whether theASidentifier is used or not.- Returns:
trueif theASidentifier is part of the expression;falseotherwise
-
hasIdentificationVariable
public boolean hasIdentificationVariable()Determines whether an identification variable was defined.- Returns:
trueif an identification variable is defined;falseotherwise
-
identificationVariables
Description copied from interface:VariableDeclarationStateObjectReturns theIdentificationVariableStateObjectthat are used by this state object. It is possible more than one declaration exists, like a range variable declaration has also joins and join fetches.- Specified by:
identificationVariablesin interfaceVariableDeclarationStateObject- Returns:
- The list of
IdentificationVariableStateObject
-
initialize
protected void initialize()Description copied from class:AbstractStateObjectInitializes this state object.- Overrides:
initializein classAbstractStateObject
-
isDerived
public boolean isDerived()Determines whether this collection member declaration is used as a derived collection-valued path expression.- Returns:
trueif this collection member declaration is used as this form: "IN collection_valued_path_expression" in a subquery;falseif it's used as this form:IN(collection_valued_path_expression) [AS] identification_variable" in a top-level or subquery queries
-
isEquivalent
Description copied from interface:StateObjectDetermines whether the givenStateObjectis equivalent to this one, i.e. the information of bothStateObjectis the same.- Specified by:
isEquivalentin interfaceStateObject- Overrides:
isEquivalentin classAbstractStateObject- Parameters:
stateObject- TheStateObjectto compare its content to this one- Returns:
trueif both object are equivalent;falseotherwise
-
removeAs
public void removeAs()Makes sure theASidentifier is not specified. -
setAs
public void setAs(boolean as) Sets whether theASidentifier is used or not.- Parameters:
as-trueif theASidentifier is part of the expression;falseotherwise
-
setDerived
public void setDerived(boolean derived) Sets whether this collection member declaration is used as a derived collection-valued path expression.- Parameters:
derived-trueif this collection member declaration is used as this form: "IN collection_valued_path_expression" in a subquery;falseif it's used as this form:IN(collection_valued_path_expression) [AS] identification_variable" in a top-level or subquery queries
-
setExpression
Keeps a reference of theparsed objectobject, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects.- Parameters:
expression- Theparsed objectrepresenting anINexpression
-
setIdentificationVariable
Sets the new identification variable that will range over the collection-valued path.- Parameters:
identificationVariable- The new identification variable
-
setPath
Changes the path expression with the list of segments, the identification variable will also be updated with the first segment.- Parameters:
path- The new path expression
-
setPaths
Changes the path expression with the list of segments, the identification variable will also be updated with the first segment.- Parameters:
paths- The new path expression
-
setPaths
Changes the path expression with the list of segments, the identification variable will also be updated with the first segment.- Parameters:
paths- The new path expression
-
setPaths
Changes the path expression with the list of segments, the identification variable will also be updated with the first segment.- Parameters:
paths- The new path expression
-
toggleAs
public void toggleAs()Toggles the usage of theASidentifier. -
toTextInternal
Description copied from class:AbstractStateObjectPrints out a string representation of thisStateObject, which should not be used to define atruestring representation of a JPQL query but should be used for debugging purposes.- Specified by:
toTextInternalin classAbstractStateObject- Parameters:
writer- The writer used to print out the string representation- Throws:
IOException- This should never happens, it is only required becauseAppendableis used instead of any concrete class
-