Class BetweenExpressionStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.BetweenExpressionStateObject
- All Implemented Interfaces:
StateObject
Used in conditional expression to determine whether the result of an expression falls within an
inclusive range of values. Numeric, string and date expression can be evaluated in this way.
BNF:
between_expression ::= arithmetic_expression [NOT] BETWEEN arithmetic_expression AND arithmetic_expression |
string_expression [NOT] BETWEEN string_expression AND string_expression |
datetime_expression [NOT] BETWEEN datetime_expression AND datetime_expression- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringNotifies theStateObjectrepresenting the lower bound expression has changed.static final StringNotifies the visibility of theNOTidentifier has changed.static final StringNotifies the state object property has changed.static final StringNotifies theStateObjectrepresenting the upper bound expression has changed. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newBetweenExpressionStateObject.BetweenExpressionStateObject(StateObject parent, String jpqlFragment, boolean not, String lowerBoundJpqlFragment, String upperBoundJpqlFragment) Creates a newBetweenExpressionStateObject.BetweenExpressionStateObject(StateObject parent, String jpqlFragment, String lowerBoundJpqlFragment, String upperBoundJpqlFragment) Creates a newBetweenExpressionStateObject.BetweenExpressionStateObject(StateObject parent, StateObject stateObject, boolean not, StateObject lowerBound, StateObject upperBound) Creates a newBetweenExpressionStateObject.BetweenExpressionStateObject(StateObject parent, StateObject stateObject, StateObject lowerBound, StateObject upperBound) Creates a newBetweenExpressionStateObject. -
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 lower bound of the range.Returns theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds.Returns theStateObjectrepresenting the upper bound of the range.booleanDetermines whether theStateObjectrepresenting the lower bound is defined or not.booleanhasNot()Determines whether theNOTidentifier is used or not.booleanDetermines whether theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds has been defined or not.booleanDetermines whether theStateObjectrepresenting the upper bound is defined or not.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.voidParses the given JPQL fragment, which will represent the expression to compare its result to the lower and upper bounds.voidparseLowerBound(String jpqlFragment) Parses the given JPQL fragment, which will represent the lower bound of the range.voidparseUpperBound(String jpqlFragment) Parses the given JPQL fragment, which will represent the upper bound of the range.voidMakes sure theNOTidentifier is not specified.voidsetExpression(BetweenExpression 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.voidsetLowerBound(StateObject lowerBound) Sets theStateObjectrepresenting the lower bound of the range.voidsetNot(boolean not) Sets whether theNOTidentifier should be part of the expression or not.voidsetStateObject(StateObject stateObject) Sets theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds.voidsetUpperBound(StateObject upperBound) Sets theStateObjectrepresenting the upper bound of the range.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
-
LOWER_STATE_OBJECT_PROPERTY
Notifies theStateObjectrepresenting the lower bound expression has changed.- See Also:
-
NOT_PROPERTY
Notifies the visibility of theNOTidentifier has changed.- See Also:
-
STATE_OBJECT_PROPERTY
Notifies the state object property has changed.- See Also:
-
UPPER_STATE_OBJECT_PROPERTY
Notifies theStateObjectrepresenting the upper bound expression has changed.- See Also:
-
-
Constructor Details
-
BetweenExpressionStateObject
Creates a newBetweenExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
BetweenExpressionStateObject
public BetweenExpressionStateObject(StateObject parent, StateObject stateObject, boolean not, StateObject lowerBound, StateObject upperBound) Creates a newBetweenExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstateObject- TheStateObjectrepresenting the expression to compare its result to the lower and upper boundsnot- Determines whether theNOTidentifier is part of the expression or notlowerBound- TheStateObjectrepresenting the lower bound expressionupperBound- TheStateObjectrepresenting the upper bound expression- Throws:
NullPointerException- The given parent cannot benull
-
BetweenExpressionStateObject
public BetweenExpressionStateObject(StateObject parent, StateObject stateObject, StateObject lowerBound, StateObject upperBound) Creates a newBetweenExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstateObject- TheStateObjectrepresenting the expression to compare its result to the lower and upper boundslowerBound- TheStateObjectrepresenting the lower bound expressionupperBound- TheStateObjectrepresenting the upper bound expression- Throws:
NullPointerException- The given parent cannot benull
-
BetweenExpressionStateObject
public BetweenExpressionStateObject(StateObject parent, String jpqlFragment, boolean not, String lowerBoundJpqlFragment, String upperBoundJpqlFragment) Creates a newBetweenExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benulljpqlFragment- The JPQL fragment representing the expression to compare its result to the lower and upper bounds, the fragment will be parsed and converted into aStateObjectnot- Determines whether theNOTidentifier is part of the expression or notlowerBoundJpqlFragment- The JPQL fragment representing the lower bound of the range, the fragment will be parsed and converted into aStateObjectupperBoundJpqlFragment- The JPQL fragment representing the upper bound of the range, the fragment will be parsed and converted into aStateObject- Throws:
NullPointerException- The given parent cannot benull
-
BetweenExpressionStateObject
public BetweenExpressionStateObject(StateObject parent, String jpqlFragment, String lowerBoundJpqlFragment, String upperBoundJpqlFragment) Creates a newBetweenExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benulljpqlFragment- The JPQL fragment representing the expression to compare its result to the lower and upper bounds, the fragment will be parsed and converted into aStateObjectlowerBoundJpqlFragment- The JPQL fragment representing the lowe bound of the range, the fragment will be parsed and converted into aStateObjectupperBoundJpqlFragment- The JPQL fragment representing the upper bound of the range, the fragment will be parsed and converted into aStateObject- 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)
-
getLowerBound
Returns theStateObjectrepresenting the lower bound of the range.- Returns:
- The expression representing the lower bound
-
getStateObject
Returns theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds.- Returns:
- The expression to check if its result is in the range of the lower and upper bounds
-
getUpperBound
Returns theStateObjectrepresenting the upper bound of the range.- Returns:
- The expression representing the upper bound
-
hasLowerBound
public boolean hasLowerBound()Determines whether theStateObjectrepresenting the lower bound is defined or not.- Returns:
trueif theStateObjectrepresenting the expression to check if its result falls into a range has been defined;falseotherwise
-
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 theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds has been defined or not.- Returns:
trueif theStateObjectrepresenting the lower bound expression has been defined;falseotherwise
-
hasUpperBound
public boolean hasUpperBound()Determines whether theStateObjectrepresenting the upper bound is defined or not.- Returns:
trueif theStateObjectrepresenting the upper bound expression has been defined;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
-
parse
Parses the given JPQL fragment, which will represent the expression to compare its result to the lower and upper bounds.- Parameters:
jpqlFragment- The JPQL fragment representing the expression to compare its result to the lower and upper bounds, the fragment will be parsed and converted into aStateObject
-
parseLowerBound
Parses the given JPQL fragment, which will represent the lower bound of the range.- Parameters:
jpqlFragment- The JPQL fragment representing the lower bound of the range, the fragment will be parsed and converted into aStateObject
-
parseUpperBound
Parses the given JPQL fragment, which will represent the upper bound of the range.- Parameters:
jpqlFragment- The JPQL fragment representing the upper bound of the range, the fragment will be parsed and converted into aStateObject
-
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 aBETWEENexpression
-
setLowerBound
Sets theStateObjectrepresenting the lower bound of the range.- Parameters:
lowerBound- TheStateObjectrepresenting the lower bound 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 theStateObjectrepresenting the expression to determine if its result falls within the lower and upper bounds.- Parameters:
stateObject- The expression to check if its result is in the range of the lower and upper bounds
-
setUpperBound
Sets theStateObjectrepresenting the upper bound of the range.- Parameters:
upperBound- TheStateObjectrepresenting the upper bound 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
-