Class OrderByClauseStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractListHolderStateObject<OrderByItemStateObject>
org.eclipse.persistence.jpa.jpql.tools.model.query.OrderByClauseStateObject
- All Implemented Interfaces:
ListHolderStateObject<OrderByItemStateObject>,StateObject
The
ORDER BY clause allows the objects or values that are returned by the
query to be ordered.
BNF: orderby_clause ::= ORDER BY orderby_item {, orderby_item}*
- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringNotify the list ofStateObjectsrepresenting theORDER BYitems. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newOrderByClauseStateObject. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(StateObjectVisitor visitor) Visits thisStateObjectby the givenvisitor.addItem()Adds a newORDER BYitem to this clause.Adds a newORDER BYitem to this clause.Adds a newORDER BYitem to this clause.addItem(String path, OrderByItem.Ordering ordering) Adds a newORDER BYitem to this clause.addItem(OrderByItem.Ordering ordering) Adds a newORDER BYitem to this clause.addItemAsc(String variable) Adds a newORDER BYitem to this clause withASC.addItemDesc(String variable) Adds a newORDER BYitem to this clause withDESC.addOrderByItem(String[] paths, OrderByItem.Ordering ordering) Adds a newORDER BYitem to this clause.Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.Returns the parent of thisStateObject.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.protected StringlistName()Returns the name that is uniquely identifying the list.voidParses the given JPQL fragment, which represents either a single or many ordering items, the fragment will be parsed and converted intoOrderByItemStateObject.voidsetExpression(OrderByClause 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.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.AbstractListHolderStateObject
addChildren, addItem, addItems, addListChangeListener, areChildrenEquivalent, canMoveDown, canMoveUp, getItem, hasItems, initialize, items, itemsSize, moveDown, moveUp, removeItem, removeItems, removeListChangeListener, toStringItemsMethods 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, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toTextMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.persistence.jpa.jpql.tools.model.query.StateObject
addPropertyChangeListener, children, decorate, findIdentificationVariable, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getQueryBuilder, getRoot, isDecorated, removePropertyChangeListener, setParent, toString, toText
-
Field Details
-
ORDER_BY_ITEMS_LIST
Notify the list ofStateObjectsrepresenting theORDER BYitems.- See Also:
-
-
Constructor Details
-
OrderByClauseStateObject
Creates a newOrderByClauseStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Details
-
accept
Description copied from interface:StateObjectVisits thisStateObjectby the givenvisitor.- Parameters:
visitor- Thevisitorto visit this object
-
addItem
Adds a newORDER BYitem to this clause.- Returns:
- The newly added
OrderByItemStateObject
-
addItem
Adds a newORDER BYitem to this clause.- Parameters:
ordering- The ascending order- Returns:
- The newly added
OrderByItemStateObject
-
addItem
Adds a newORDER BYitem to this clause.- Returns:
- The newly added
OrderByItemStateObject
-
addItem
Adds a newORDER BYitem to this clause.- Parameters:
variable- The identification variable or the result variable- Returns:
- The newly added
OrderByItemStateObject
-
addItem
Adds a newORDER BYitem to this clause.- Parameters:
path- The identification variable or the result variableordering- The ascending order- Returns:
- The newly added
OrderByItemStateObject
-
addItemAsc
Adds a newORDER BYitem to this clause withASC.- Parameters:
variable- The identification variable or the result variable- Returns:
- The newly added
OrderByItemStateObject
-
addItemDesc
Adds a newORDER BYitem to this clause withDESC.- Parameters:
variable- The identification variable or the result variable- Returns:
- The newly added
OrderByItemStateObject
-
addOrderByItem
Adds a newORDER BYitem to this clause.- Parameters:
paths- The paths or the itemordering- The ascending order- Returns:
- The newly added
OrderByItemStateObject
-
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)
-
getParent
Description copied from interface:StateObjectReturns the parent of thisStateObject.- Specified by:
getParentin interfaceStateObject- Overrides:
getParentin classAbstractStateObject- Returns:
- Returns the parent of this
StateObject, which isnullonly when this is the root of the hierarchy
-
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
-
listName
Description copied from class:AbstractListHolderStateObjectReturns the name that is uniquely identifying the list.- Specified by:
listNamein classAbstractListHolderStateObject<OrderByItemStateObject>- Returns:
- The unique name identifying the list
-
parse
Parses the given JPQL fragment, which represents either a single or many ordering items, the fragment will be parsed and converted intoOrderByItemStateObject.- Parameters:
jpqlFragment- The portion of the query to parse
-
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 anORDER BYclause
-
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
-