Class AdditionExpressionStateObject
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.CompoundExpressionStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.ArithmeticExpressionStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AdditionExpressionStateObject
-
- All Implemented Interfaces:
StateObject
public class AdditionExpressionStateObject extends ArithmeticExpressionStateObject
TODO:BNF:arithmetic_expression ::= arithmetic_expression + arithmetic_term- Since:
- 2.4
- Version:
- 2.4
- Author:
- Pascal Filion
- See Also:
AdditionExpression
-
-
Field Summary
-
Fields inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.CompoundExpressionStateObject
LEFT_STATE_OBJECT_PROPERTY, RIGHT_STATE_OBJECT_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description AdditionExpressionStateObject(StateObject parent)Creates a newAdditionExpressionStateObject.AdditionExpressionStateObject(StateObject parent, String leftJpqlFragment, String rightJpqlFragment)Creates a newAdditionExpressionStateObject.AdditionExpressionStateObject(StateObject parent, StateObject leftStateObject, StateObject rightStateObject)Creates a newAdditionExpressionStateObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(StateObjectVisitor visitor)Visits thisStateObjectby the givenvisitor.AdditionExpressiongetExpression()Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.StringgetIdentifier()Returns the identifier joining the twoStateObjects.voidsetExpression(AdditionExpression 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.-
Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.CompoundExpressionStateObject
getLeft, getRight, hasLeft, hasRight, isEquivalent, parseLeft, parseRight, setLeft, setRight
-
Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
addPropertyChangeListener, children, decorate, equals, findIdentificationVariable, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getParent, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, isDecorated, removePropertyChangeListener, setExpression, setParent, toString, toString, toText
-
-
-
-
Constructor Detail
-
AdditionExpressionStateObject
public AdditionExpressionStateObject(StateObject parent)
Creates a newAdditionExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
AdditionExpressionStateObject
public AdditionExpressionStateObject(StateObject parent, StateObject leftStateObject, StateObject rightStateObject)
Creates a newAdditionExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullleftStateObject- TheStateObjectrepresenting the left expressionrightStateObject- TheStateObjectrepresenting the right expression- Throws:
NullPointerException- The given parent cannot benull
-
AdditionExpressionStateObject
public AdditionExpressionStateObject(StateObject parent, String leftJpqlFragment, String rightJpqlFragment)
Creates a newAdditionExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullleftJpqlFragment- The string representation of the left expression to parse and to convert into aStateObjectrightJpqlFragment- The string representation of the right expression to parse and to convert into aStateObject- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Detail
-
accept
public void accept(StateObjectVisitor visitor)
Visits thisStateObjectby the givenvisitor.- Parameters:
visitor- Thevisitorto visit this object
-
getExpression
public AdditionExpression getExpression()
Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.- Specified by:
getExpressionin interfaceStateObject- Overrides:
getExpressionin classArithmeticExpressionStateObject- 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)
-
getIdentifier
public String getIdentifier()
Returns the identifier joining the twoStateObjects.- Specified by:
getIdentifierin classCompoundExpressionStateObject- Returns:
- The JPQL identifier join two expressions
-
setExpression
public void setExpression(AdditionExpression 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.- Parameters:
expression- Theparsed objectrepresenting an addition expression
-
-