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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getQuery()
      Get the sort query to be applied.
      java.lang.String getSortCode()
      Get the sort code associated to the sort query to be applied.
      java.lang.Class<? extends Dao> getTypeClass()
      Get the typeClass identifying the SortQueryData
      boolean isDefault()
      Determines if the sort query data is the default one or not.
    • Method Detail

      • getTypeClass

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

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

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

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