[]
        
(Showing Draft Content)

ISortFields

Interface ISortFields


public interface ISortFields
Represents the sort condition list.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(ISortField sortField)
    Adds a sort field.
    void
    Clears the list.
    get(int index)
    Gets the sort key in the sort list.
    int
    Gets the list count.
    boolean
    remove(ISortField sortField)
    Removes a sort field.
  • Method Details

    • get

      ISortField get(int index)
      Gets the sort key in the sort list.
    • add

      void add(ISortField sortField)
      Adds a sort field.
      Parameters:
      sortField - The sort information.
    • remove

      boolean remove(ISortField sortField)
      Removes a sort field.
      Parameters:
      sortField - The sort information.
    • getCount

      int getCount()
      Gets the list count.
    • clear

      void clear()
      Clears the list.