Interface ExtendedOrderedQueryable<T>

    • Method Detail

      • thenBy

        <TKey extends java.lang.Comparable<TKey>> OrderedQueryable<T> thenBy​(FunctionExpression<Function1<T,​TKey>> keySelector)
        Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.
      • thenBy

        <TKey> OrderedQueryable<T> thenBy​(FunctionExpression<Function1<T,​TKey>> keySelector,
                                          java.util.Comparator<TKey> comparator)
        Performs a subsequent ordering of the elements in a sequence in ascending order according to a key, using a specified comparator.
      • thenByDescending

        <TKey extends java.lang.Comparable<TKey>> OrderedQueryable<T> thenByDescending​(FunctionExpression<Function1<T,​TKey>> keySelector)
        Performs a subsequent ordering of the elements in a sequence in descending order according to a key.
      • thenByDescending

        <TKey> OrderedQueryable<T> thenByDescending​(FunctionExpression<Function1<T,​TKey>> keySelector,
                                                    java.util.Comparator<TKey> comparator)
        Performs a subsequent ordering of the elements in a sequence in descending order according to a key, using a specified comparator.