Interface SortQueryData

All Known Implementing Classes:
DefaultSortQueryData

public interface SortQueryData
Represents meta-information about an Dao class and the associated sort code and query.
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the sort query to be applied.
    Get the sort code associated to the sort query to be applied.
    Class<? extends Dao>
    Get the typeClass identifying the SortQueryData
    boolean
    Determines if the sort query data is the default one or not.
  • Method Details

    • getTypeClass

      Class<? extends Dao> getTypeClass()
      Get the typeClass identifying the SortQueryData
    • getSortCode

      String getSortCode()
      Get the sort code associated to the sort query to be applied.
    • getQuery

      String getQuery()
      Get the sort query to be applied.
    • isDefault

      boolean isDefault()
      Determines if the sort query data is the default one or not.