Class CollectionMemberExpressionStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.CollectionMemberExpressionStateObject
- All Implemented Interfaces:
StateObject
This expression tests whether the designated value is a member of the collection specified by the
collection-valued path expression. If the collection-valued path expression designates an empty
collection, the value of the
MEMBER OF expression is FALSE and the
value of the NOT MEMBER OF expression is TRUE. Otherwise, if the value
of the collection-valued path expression or single-valued association-field path expression in
the collection member expression is NULL or unknown, the value of the collection member
expression is unknown.
BNF: collection_member_expression ::= entity_or_value_expression [NOT] MEMBER [OF] collection_valued_path_expression
- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newCollectionMemberExpressionStateObject.CollectionMemberExpressionStateObject(StateObject parent, StateObject entityStateObject, boolean not, boolean of, String collectionValuedPath) Creates a newCollectionMemberExpressionStateObject.CollectionMemberExpressionStateObject(StateObject parent, StateObject entityStateObject, String collectionValuedPath) Creates a newCollectionMemberExpressionStateObject. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(StateObjectVisitor visitor) Visits thisStateObjectby the givenvisitor.protected voidaddChildren(List<StateObject> children) Adds the children of thisStateObjectto the given list.addNot()Makes sure theNOTidentifier is specified.addOf()Makes sure theOFidentifier is specified.Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.booleanbooleanhasNot()Determines whether theNOTidentifier is used or not.booleanhasOf()protected voidInitializes this state object.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.voidMakes sure theNOTidentifier is not specified.voidremoveOf()Makes sure theOFidentifier is not specified.voidsetEntityStateObject(StateObject entityStateObject) SetsvoidsetExpression(CollectionMemberExpression 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.voidsetNot(boolean not) Sets whether theNOTidentifier should be part of the expression or not.voidsetOf(boolean of) voidChanges the visibility state of theNOTidentifier.voidtoggleOf()Changes the visibility state of theOFidentifier.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, getParent, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toText
-
Field Details
-
ENTITY_STATE_OBJECT_PROPERTY
Notifies the entity state object property has changed.- See Also:
-
NOT_PROPERTY
Notifies the visibility of theNOTidentifier has changed.- See Also:
-
OF_PROPERTY
Notifies the visibility of theOFidentifier has changed.- See Also:
-
-
Constructor Details
-
CollectionMemberExpressionStateObject
Creates a newCollectionMemberExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
CollectionMemberExpressionStateObject
public CollectionMemberExpressionStateObject(StateObject parent, StateObject entityStateObject, boolean not, boolean of, String collectionValuedPath) Creates a newCollectionMemberExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullnot- Determines whether theNOTidentifier is part of the expression or not- Throws:
NullPointerException- The given parent cannot benull
-
CollectionMemberExpressionStateObject
public CollectionMemberExpressionStateObject(StateObject parent, StateObject entityStateObject, String collectionValuedPath) Creates a newCollectionMemberExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Details
-
accept
Description copied from interface:StateObjectVisits thisStateObjectby the givenvisitor.- Parameters:
visitor- Thevisitorto visit 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
-
addNot
Makes sure theNOTidentifier is specified.- Returns:
- This object
-
addOf
Makes sure theOFidentifier is specified.- Returns:
- This object
-
getCollectionValuedPath
-
getEntityStateObject
-
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)
-
hasEntityStateObject
public boolean hasEntityStateObject() -
hasNot
public boolean hasNot()Determines whether theNOTidentifier is used or not.- Returns:
trueif theNOTidentifier is part of the expression;falseotherwise
-
hasOf
public boolean hasOf() -
initialize
protected void initialize()Description copied from class:AbstractStateObjectInitializes this state object.- Overrides:
initializein classAbstractStateObject
-
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
-
removeNot
public void removeNot()Makes sure theNOTidentifier is not specified. -
removeOf
public void removeOf()Makes sure theOFidentifier is not specified. -
setEntityStateObject
Sets -
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 a collection member expression
-
setNot
public void setNot(boolean not) Sets whether theNOTidentifier should be part of the expression or not.- Parameters:
not-trueif theNOTidentifier should be part of the expression;falseotherwise
-
setOf
public void setOf(boolean of) -
toggleNot
public void toggleNot()Changes the visibility state of theNOTidentifier. -
toggleOf
public void toggleOf()Changes the visibility state of theOFidentifier. -
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
-