Uses of Interface
de.renebergelt.quiterables.OrderedQueriable
Packages that use OrderedQueriable
-
Uses of OrderedQueriable in de.renebergelt.quiterables
Subinterfaces of OrderedQueriable in de.renebergelt.quiterablesModifier and TypeInterfaceDescriptioninterfaceRepresents a grouped Queriable which has been orderedMethods in de.renebergelt.quiterables that return OrderedQueriableModifier and TypeMethodDescriptionQueriable.orderBy(ItemFunc<T,Comparable> func)Order the elements of this enumeration according to the values returned by the order function<TComparable>
OrderedQueriable<T>Queriable.orderBy(ItemFunc<T,TComparable> valueFunc, Comparator<TComparable> comparator)Order the elements of this enumeration according to the values returned by the value function function using the given comparatorQueriable.orderByDescending(ItemFunc<T,Comparable> func)Order the elements of this enumeration according the values returned by the order function in descending order<TComparable>
OrderedQueriable<T>Queriable.orderByDescending(ItemFunc<T,TComparable> valueFunc, Comparator<TComparable> comparator)Order the elements of this enumeration according to the values returned by the value function function using the given comparator in descending orderOrderedQueriable.thenBy(ItemFunc<T,Comparable> func)Define a secondary ordering criterion<TComparable>
OrderedQueriable<T>OrderedQueriable.thenBy(ItemFunc<T,TComparable> valueFunc, Comparator<TComparable> comparator)Define a secondary ordering criterion using the given ComparatorOrderedQueriable.thenByDescending(ItemFunc<T,Comparable> func)Define a secondary ordering criterion (descending)<TComparable>
OrderedQueriable<T>OrderedQueriable.thenByDescending(ItemFunc<T,TComparable> valueFunc, Comparator<TComparable> comparator)Define a secondary ordering criterion using the given Comparator (descending)