模块  java.desktop
软件包  javax.swing

Class RowSorter.SortKey

  • Enclosing class:
    RowSorter < M >

    public static class RowSorter.SortKey
    extends Object
    SortKey描述特定列的排序顺序。 列索引是基础模型的,可能与视图的不同。
    从以下版本开始:
    1.6
    • 构造方法详细信息

      • SortKey

        public SortKey​(int column,
                       SortOrder sortOrder)
        使用指定的排序顺序为指定的列创建 SortKey
        参数
        column - 列的索引(就模型而言)
        sortOrder - 分拣机订单
        异常
        IllegalArgumentException - 如果 sortOrdernull
    • 方法详细信息

      • getColumn

        public final int getColumn()
        返回列的索引。
        结果
        列索引
      • getSortOrder

        public final SortOrder getSortOrder()
        返回列的排序顺序。
        结果
        列的排序顺序
      • equals

        public boolean equals​(Object o)
        如果此对象等于指定的对象,则返回true。 如果指定的对象是SortKey并引用相同的列和排序顺序,则两个对象相等。
        重写:
        equals在课程 Object
        参数
        o - 要比较的对象
        结果
        如果 o等于此 SortKey
        另请参见:
        Object.hashCode(), HashMap