Interface CompositeSortOptionsCollector<S extends CompositeSortOptionsCollector<?>>

All Known Subinterfaces:
CompositeSortComponentsStep<SR,S>

public interface CompositeSortOptionsCollector<S extends CompositeSortOptionsCollector<?>>
  • Method Summary

    Modifier and Type
    Method
    Description
    default S
    add(SortFinalStep dslFinalStep)
    Add an element to the composite sort based on an almost-built SearchSort.
    add(SearchSort searchSort)
    Add an element to the composite sort based on a previously-built SearchSort.
  • Method Details

    • add

      S add(SearchSort searchSort)
      Add an element to the composite sort based on a previously-built SearchSort.
      Parameters:
      searchSort - The sort to add.
      Returns:
      this, for method chaining.
    • add

      default S add(SortFinalStep dslFinalStep)
      Add an element to the composite sort based on an almost-built SearchSort.
      Parameters:
      dslFinalStep - A final step in the sort DSL allowing the retrieval of a SearchSort.
      Returns:
      this, for method chaining.