Uses of Class
adql.query.ADQLOrder
-
Packages that use ADQLOrder Package Description adql.parser adql.query adql.translator -
-
Uses of ADQLOrder in adql.parser
Methods in adql.parser that return ADQLOrder Modifier and Type Method Description ADQLOrder
ADQLQueryFactory. createOrder(int ind, boolean desc)
ADQLOrder
ADQLQueryFactory. createOrder(int ind, boolean desc, TextPosition position)
Deprecated.since 1.4 ; Replaced byADQLQueryFactory.createOrder(int, boolean)
ADQLOrder
ADQLQueryFactory. createOrder(IdentifierItems.IdentifierItem colName, boolean desc)
ADQLOrder
ADQLQueryFactory. createOrder(IdentifierItems idItems, boolean desc)
Deprecated.since 1.4 ; Former version's mistake: an ORDER BY item is either a regular/delimited column name or an integer, not a qualified column name ; Replaced byADQLQueryFactory.createOrder(adql.parser.IdentifierItems.IdentifierItem, boolean)
; This function is no longer used by ADQLParser.ADQLOrder
ADQLParser. OrderItem()
-
Uses of ADQLOrder in adql.query
Methods in adql.query that return types with arguments of type ADQLOrder Modifier and Type Method Description ClauseADQL<ADQLOrder>
ADQLQuery. getOrderBy()
Gets the ORDER BY clause of this query.Method parameters in adql.query with type arguments of type ADQLOrder Modifier and Type Method Description void
ADQLQuery. setOrderBy(ClauseADQL<ADQLOrder> newOrderBy)
Replaces its ORDER BY clause by the given one.Constructors in adql.query with parameters of type ADQLOrder Constructor Description ADQLOrder(ADQLOrder toCopy)
Builds an ORDER BY item by copying the given one. -
Uses of ADQLOrder in adql.translator
Methods in adql.translator with parameters of type ADQLOrder Modifier and Type Method Description java.lang.String
ADQLTranslator. translate(ADQLOrder order)
java.lang.String
JDBCTranslator. translate(ADQLOrder order)
-