Class NullComparisonExpressionStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.NullComparisonExpressionStateObject
- All Implemented Interfaces:
StateObject
A null comparison tests whether or not the single-valued path expression or input parameter is a
NULL value.
BNF: null_comparison_expression ::= {single_valued_path_expression | input_parameter} IS [NOT] NULL
- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newNullComparisonExpressionStateObject.NullComparisonExpressionStateObject(StateObject parent, boolean not, String path) Creates a newNullComparisonExpressionStateObject.NullComparisonExpressionStateObject(StateObject parent, boolean not, StateObject stateObject) Creates a newNullComparisonExpressionStateObject.NullComparisonExpressionStateObject(StateObject parent, String path) Creates a newNullComparisonExpressionStateObject.NullComparisonExpressionStateObject(StateObject parent, StateObject stateObject) Creates a newNullComparisonExpressionStateObject. -
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.Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.Returns theStateObjectrepresenting the collection-valued path expression.booleanhasNot()Determines whether theNOTidentifier is used or not.booleanDetermines whether there is aStateObjectrepresenting the collection-valued path expression.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.voidMakes sure theNOTidentifier is not specified.voidsetExpression(NullComparisonExpression 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.voidsetStateObject(StateObject stateObject) Sets the givenStateObjectas the collection-valued path expression.voidChanges the visibility state of theNOTidentifier.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, initialize, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toText
-
Field Details
-
NOT_PROPERTY
Notifies the visibility of theNOTidentifier has changed.- See Also:
-
STATE_OBJECT_PROPERTY
Notifies the state object property has changed.- See Also:
-
-
Constructor Details
-
NullComparisonExpressionStateObject
Creates a newNullComparisonExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
NullComparisonExpressionStateObject
public NullComparisonExpressionStateObject(StateObject parent, boolean not, StateObject stateObject) Creates a newNullComparisonExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullnot- Determines whether theNOTidentifier is part of the expression or notstateObject- TheStateObjectrepresenting the collection-valued path expression- Throws:
NullPointerException- The given parent cannot benull
-
NullComparisonExpressionStateObject
Creates a newNullComparisonExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullnot- Determines whether theNOTidentifier is part of the expression or notpath- Either the singled-valued path expression or the input parameter- Throws:
NullPointerException- The given parent cannot benull
-
NullComparisonExpressionStateObject
Creates a newNullComparisonExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstateObject- TheStateObjectrepresenting the collection-valued path expression- Throws:
NullPointerException- The given parent cannot benull
-
NullComparisonExpressionStateObject
Creates a newNullComparisonExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullpath- Either the singled-valued path expression or the input parameter- 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
-
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)
-
getStateObject
Returns theStateObjectrepresenting the collection-valued path expression.- Returns:
- The
StateObjectrepresenting the collection-valued path expression
-
hasNot
public boolean hasNot()Determines whether theNOTidentifier is used or not.- Returns:
trueif theNOTidentifier is part of the expression;falseotherwise
-
hasStateObject
public boolean hasStateObject()Determines whether there is aStateObjectrepresenting the collection-valued path expression.- Returns:
trueif theStateObjectis notnull;falseotherwise
-
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. -
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 the null 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
-
setStateObject
Sets the givenStateObjectas the collection-valued path expression.- Parameters:
stateObject- TheStateObjectthat represents the collection-valued path expression
-
toggleNot
public void toggleNot()Changes the visibility state of theNOTidentifier. -
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
-