EclipseLink 2.4.2, build 'v20130514-5956486' API Reference

org.eclipse.persistence.jpa.jpql.model.query
Class AbstractDoubleEncapsulatedExpressionStateObject

java.lang.Object
  extended by org.eclipse.persistence.jpa.jpql.model.query.AbstractStateObject
      extended by org.eclipse.persistence.jpa.jpql.model.query.AbstractEncapsulatedExpressionStateObject
          extended by org.eclipse.persistence.jpa.jpql.model.query.AbstractDoubleEncapsulatedExpressionStateObject
All Implemented Interfaces:
StateObject
Direct Known Subclasses:
ModExpressionStateObject, NullIfExpressionStateObject

public abstract class AbstractDoubleEncapsulatedExpressionStateObject
extends AbstractEncapsulatedExpressionStateObject

This StateObject represents a JPQL expression that has a JPQL identifier followed by two an encapsulated expression with parenthesis, the two expression are separated by a comma.

BNF: expression ::= <identifier>(first_expression, second_expression)

Version:
2.4
See Also:
ModExpressionStateObject, NullIfExpressionStateObject, AbstractDoubleEncapsulatedExpression
Author:
Pascal Filion
Since:
2.4

Field Summary
static java.lang.String FIRST_STATE_OBJECT_PROPERTY
          Notifies the first StateObject property has changed.
static java.lang.String SECOND_STATE_OBJECT_PROPERTY
          Notifies the second StateObject property has changed.
 
Constructor Summary
protected AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent)
          Creates a new AbstractDoubleEncapsulatedExpressionStateObject.
protected AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent, StateObject firstStateObject, StateObject secondStateObject)
          Creates a new AbstractDoubleEncapsulatedExpressionStateObject.
  AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent, java.lang.String firstJpqlFragment, java.lang.String secondJpqlFragment)
          Creates a new AbstractDoubleEncapsulatedExpressionStateObject.
 
Method Summary
protected  void addChildren(java.util.List<StateObject> children)
          Adds the children of this StateObject to the given list.
 AbstractDoubleEncapsulatedExpression getExpression()
          Returns the actual parsed object if this StateObject representation of the JPQL query was created by parsing an existing JPQL query.
 StateObject getFirst()
          Returns the StateObject representing the first expression.
protected abstract  java.lang.String getFirstQueryBNFId()
          Returns the unique identifier of the BNF that will be used to parse a JPQL fragment as the first encapsulated expression.
 StateObject getSecond()
          Returns the StateObject representing the second expression.
protected abstract  java.lang.String getSecondQueryBNFId()
          Returns the unique identifier of the BNF that will be used to parse a JPQL fragment as the second encapsulated expression.
 boolean hasFirst()
          Determines whether the StateObject representing the first encapsulated expression is present or not.
 boolean hasSecond()
          Determines whether the StateObject representing the second encapsulated expression is present or not.
 boolean isEquivalent(StateObject stateObject)
          Determines whether the given StateObject is equivalent to this one, i.e. the information of both StateObject is the same.
 void parseFirst(java.lang.String jpqlFragment)
          Parses the given JPQL fragment, which will represent the first encapsulated expression.
 void parseSecond(java.lang.String jpqlFragment)
          Parses the given JPQL fragment, which will represent the second encapsulated expression.
 void setFirst(StateObject firstStateObject)
          Sets the given StateObject to represent the first encapsulated expression.
 void setSecond(StateObject secondStateObject)
          Sets the given StateObject to represent the second encapsulated expression.
protected  void toTextEncapsulatedExpression(java.lang.Appendable writer)
          Prints out a string representation of this encapsulated information, which should not be used to define a true string representation of a JPQL query but should be used for debugging purposes.
 
Methods inherited from class org.eclipse.persistence.jpa.jpql.model.query.AbstractEncapsulatedExpressionStateObject
getIdentifier, toTextInternal
 
Methods inherited from class org.eclipse.persistence.jpa.jpql.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
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.eclipse.persistence.jpa.jpql.model.query.StateObject
accept
 

Field Detail

FIRST_STATE_OBJECT_PROPERTY

public static final java.lang.String FIRST_STATE_OBJECT_PROPERTY
Notifies the first StateObject property has changed.

See Also:
Constant Field Values

SECOND_STATE_OBJECT_PROPERTY

public static final java.lang.String SECOND_STATE_OBJECT_PROPERTY
Notifies the second StateObject property has changed.

See Also:
Constant Field Values
Constructor Detail

AbstractDoubleEncapsulatedExpressionStateObject

protected AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent)
Creates a new AbstractDoubleEncapsulatedExpressionStateObject.

Parameters:
parent - The parent of this state object, which cannot be null
Throws:
java.lang.NullPointerException - The given parent cannot be null

AbstractDoubleEncapsulatedExpressionStateObject

protected AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent,
                                                          StateObject firstStateObject,
                                                          StateObject secondStateObject)
Creates a new AbstractDoubleEncapsulatedExpressionStateObject.

Parameters:
parent - The parent of this state object, which cannot be null
firstStateObject - The StateObject representing the first expression
secondStateObject - The StateObject representing the second expression
Throws:
java.lang.NullPointerException - The given parent cannot be null

AbstractDoubleEncapsulatedExpressionStateObject

public AbstractDoubleEncapsulatedExpressionStateObject(StateObject parent,
                                                       java.lang.String firstJpqlFragment,
                                                       java.lang.String secondJpqlFragment)
Creates a new AbstractDoubleEncapsulatedExpressionStateObject.

Parameters:
parent - The parent of this state object, which cannot be null
firstJpqlFragment - The string representation of the first encapsulated expression to parse and to convert into a StateObject representation
secondJpqlFragment - The string representation of the second encapsulated expression to parse and to convert into a StateObject representation
Throws:
java.lang.NullPointerException - The given parent cannot be null
Method Detail

addChildren

protected void addChildren(java.util.List<StateObject> children)
Adds the children of this StateObject to the given list.

Overrides:
addChildren in class AbstractStateObject
Parameters:
children - The list used to store the children

getExpression

public AbstractDoubleEncapsulatedExpression getExpression()
Returns the actual parsed object if this StateObject representation of the JPQL query was created by parsing an existing JPQL query.

Specified by:
getExpression in interface StateObject
Overrides:
getExpression in class AbstractEncapsulatedExpressionStateObject
Returns:
The parsed object when a JPQL query is parsed and converted into a StateObject or null when the JPQL query is manually created (i.e. not from a string)

getFirst

public StateObject getFirst()
Returns the StateObject representing the first expression.

Returns:
The first encapsulated StateObject or null if none exists

getFirstQueryBNFId

protected abstract java.lang.String getFirstQueryBNFId()
Returns the unique identifier of the BNF that will be used to parse a JPQL fragment as the first encapsulated expression.

Returns:
The query BNF ID for the first encapsulated expression

getSecond

public StateObject getSecond()
Returns the StateObject representing the second expression.

Returns:
The second encapsulated StateObject or null if none exists

getSecondQueryBNFId

protected abstract java.lang.String getSecondQueryBNFId()
Returns the unique identifier of the BNF that will be used to parse a JPQL fragment as the second encapsulated expression.

Returns:
The query BNF ID for the second encapsulated expression

hasFirst

public boolean hasFirst()
Determines whether the StateObject representing the first encapsulated expression is present or not.

Returns:
true if the first StateObject is not null; false otherwise

hasSecond

public boolean hasSecond()
Determines whether the StateObject representing the second encapsulated expression is present or not.

Returns:
true if the second StateObject is not null; false otherwise

isEquivalent

public boolean isEquivalent(StateObject stateObject)
Determines whether the given StateObject is equivalent to this one, i.e. the information of both StateObject is the same.

Specified by:
isEquivalent in interface StateObject
Overrides:
isEquivalent in class AbstractStateObject
Parameters:
stateObject - The StateObject to compare its content to this one
Returns:
true if both object are equivalent; false otherwise

parseFirst

public void parseFirst(java.lang.String jpqlFragment)
Parses the given JPQL fragment, which will represent the first encapsulated expression.

Parameters:
jpqlFragment - The string representation of the first encapsulated expression to parse and to convert into a StateObject representation

parseSecond

public void parseSecond(java.lang.String jpqlFragment)
Parses the given JPQL fragment, which will represent the second encapsulated expression.

Parameters:
jpqlFragment - The string representation of the second encapsulated expression to parse and to convert into a StateObject representation

setFirst

public void setFirst(StateObject firstStateObject)
Sets the given StateObject to represent the first encapsulated expression.

Parameters:
firstStateObject - The new encapsulated StateObject representing the first expression

setSecond

public void setSecond(StateObject secondStateObject)
Sets the given StateObject to represent the second encapsulated expression.

Parameters:
secondStateObject - The new encapsulated StateObject representing the second expression

toTextEncapsulatedExpression

protected void toTextEncapsulatedExpression(java.lang.Appendable writer)
                                     throws java.io.IOException
Prints out a string representation of this encapsulated information, which should not be used to define a true string representation of a JPQL query but should be used for debugging purposes.

Specified by:
toTextEncapsulatedExpression in class AbstractEncapsulatedExpressionStateObject
Parameters:
writer - The writer used to print out the string representation of the encapsulated information
Throws:
java.io.IOException - This should never happens, only required because Appendable is used instead of StringBuilder for instance

EclipseLink 2.4.2, build 'v20130514-5956486' API Reference