接口 ISortFields


public interface ISortFields
Represents the sort condition list.
  • 方法概要

    修饰符和类型
    方法
    说明
    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.
  • 方法详细资料

    • get

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

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

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

      int getCount()
      Gets the list count.
    • clear

      void clear()
      Clears the list.