Class SimpleSelectClauseStateObject
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSelectClauseStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.SimpleSelectClauseStateObject
-
- All Implemented Interfaces:
StateObject
public class SimpleSelectClauseStateObject extends AbstractSelectClauseStateObject
The SELECT statement queries data from entities. This version simply does not handle OBJECT and NEW identifiers. It is used from within another expression.BNF:simple_select_clause ::= SELECT [DISTINCT] simple_select_expression
- Version:
- 2.4
- See Also:
SimpleSelectClause
- Author:
- Pascal Filion
- Since:
- 2.4
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
SELECT_ITEM_PROPERTY
Notifies the select expression property has changed.-
Fields inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSelectClauseStateObject
DISTINCT_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description SimpleSelectClauseStateObject(SimpleSelectStatementStateObject parent)
Creates a newSubQuerySelectClauseStateObject
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(StateObjectVisitor visitor)
Visits thisStateObject
by the givenvisitor
.protected void
addChildren(java.util.List<StateObject> children)
Adds the children of thisStateObject
to the given list.ISimpleSelectExpressionStateObjectBuilder
getBuilder()
Creates and returns a newISimpleSelectExpressionStateObjectBuilder
that can be used to programmatically create a single select expression and once the expression is complete,ISimpleSelectExpressionStateObjectBuilder.commit()
will push theStateObject
representation of that expression as this clause's select expression.SimpleSelectClause
getExpression()
Returns the actual parsed object if thisStateObject
representation of the JPQL query was created by parsing an existing JPQL query.SimpleFromClauseStateObject
getFromClause()
Returns theAbstractFromClauseStateObject
representing the FROM clause.SimpleSelectStatementStateObject
getParent()
Returns the parent of thisStateObject
.StateObject
getSelectItem()
Returnsboolean
hasSelectItem()
Determines whether thisSELECT
clause has a select item defined (only one can be set for a subquery'sSELECT
clause and many for a top-level query).boolean
isEquivalent(StateObject stateObject)
Determines whether the givenStateObject
is equivalent to this one, i.e. the information of bothStateObject
is the same.void
parse(java.lang.String jpqlFragment)
Parses the given JPQL fragment and create the select item.void
setExpression(SimpleSelectClause expression)
Keeps a reference of theparsed object
object, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects
.void
setSelectItem(StateObject stateObject)
Sets the givenStateObject
as this clause's select item.protected void
toTextInternal(java.lang.Appendable writer)
Prints out a string representation of thisStateObject
, which should not be used to define atrue
string representation of a JPQL query but should be used for debugging purposes.-
Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSelectClauseStateObject
hasDistinct, setDistinct, toggleDistinct
-
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, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, initialize, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toText
-
-
-
-
Field Detail
-
SELECT_ITEM_PROPERTY
public static final java.lang.String SELECT_ITEM_PROPERTY
Notifies the select expression property has changed.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SimpleSelectClauseStateObject
public SimpleSelectClauseStateObject(SimpleSelectStatementStateObject parent)
Creates a newSubQuerySelectClauseStateObject
.- Parameters:
parent
- The parent of this state object, which cannot benull
- Throws:
java.lang.NullPointerException
- The given parent cannot benull
-
-
Method Detail
-
accept
public void accept(StateObjectVisitor visitor)
Visits thisStateObject
by the givenvisitor
.- Parameters:
visitor
- Thevisitor
to visit this object
-
addChildren
protected void addChildren(java.util.List<StateObject> children)
Adds the children of thisStateObject
to the given list.- Overrides:
addChildren
in classAbstractStateObject
- Parameters:
children
- The list used to store the children
-
getBuilder
public ISimpleSelectExpressionStateObjectBuilder getBuilder()
Creates and returns a newISimpleSelectExpressionStateObjectBuilder
that can be used to programmatically create a single select expression and once the expression is complete,ISimpleSelectExpressionStateObjectBuilder.commit()
will push theStateObject
representation of that expression as this clause's select expression.- Returns:
- A new builder that can be used to quickly create a select expression
-
getExpression
public SimpleSelectClause getExpression()
Returns the actual parsed object if thisStateObject
representation of the JPQL query was created by parsing an existing JPQL query.- Specified by:
getExpression
in interfaceStateObject
- Overrides:
getExpression
in classAbstractSelectClauseStateObject
- Returns:
- The parsed object when a JPQL query is parsed and converted into a
StateObject
ornull
when the JPQL query is manually created (i.e. not from a string)
-
getFromClause
public SimpleFromClauseStateObject getFromClause()
Returns theAbstractFromClauseStateObject
representing the FROM clause.- Overrides:
getFromClause
in classAbstractSelectClauseStateObject
- Returns:
- The state object representing the FROM clause
-
getParent
public SimpleSelectStatementStateObject getParent()
Returns the parent of thisStateObject
.- Specified by:
getParent
in interfaceStateObject
- Overrides:
getParent
in classAbstractSelectClauseStateObject
- Returns:
- Returns the parent of this
StateObject
, which isnull
only when this is the root of the hierarchy
-
getSelectItem
public StateObject getSelectItem()
Returns- Returns:
-
hasSelectItem
public boolean hasSelectItem()
Determines whether thisSELECT
clause has a select item defined (only one can be set for a subquery'sSELECT
clause and many for a top-level query).- Specified by:
hasSelectItem
in classAbstractSelectClauseStateObject
- Returns:
true
if this state object has children;false
otherwise
-
isEquivalent
public boolean isEquivalent(StateObject stateObject)
Determines whether the givenStateObject
is equivalent to this one, i.e. the information of bothStateObject
is the same.- Specified by:
isEquivalent
in interfaceStateObject
- Overrides:
isEquivalent
in classAbstractSelectClauseStateObject
- Parameters:
stateObject
- TheStateObject
to compare its content to this one- Returns:
true
if both object are equivalent;false
otherwise
-
parse
public void parse(java.lang.String jpqlFragment)
Parses the given JPQL fragment and create the select item. For the top-level query, the fragment can contain several select items but for a subquery, it can represent only one.- Specified by:
parse
in classAbstractSelectClauseStateObject
- Parameters:
jpqlFragment
- The portion of the query representing one or several select items
-
setExpression
public void setExpression(SimpleSelectClause expression)
Keeps a reference of theparsed object
object, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects
.- Parameters:
expression
- Theparsed object
representing a subquerySELECT
clause
-
setSelectItem
public void setSelectItem(StateObject stateObject)
Sets the givenStateObject
as this clause's select item.- Parameters:
stateObject
- TheStateObject
representing the single select item
-
toTextInternal
protected void toTextInternal(java.lang.Appendable writer) throws java.io.IOException
Prints out a string representation of thisStateObject
, which should not be used to define atrue
string representation of a JPQL query but should be used for debugging purposes.- Specified by:
toTextInternal
in classAbstractStateObject
- Parameters:
writer
- The writer used to print out the string representation- Throws:
java.io.IOException
- This should never happens, it is only required becauseAppendable
is used instead of any concrete class
-
-