public static class RowSorter.SortKey extends Object
SortKey describes the sort order for a particular column. The column index is in terms of the underlying model, which may differ from that of the view.
public SortKey(int column, SortOrder sortOrder)
Creates a SortKey
for the specified column with the specified sort order.
column
- index of the column, in terms of the modelsortOrder
- the sorter orderIllegalArgumentException
- if sortOrder
is null
public final int getColumn()
Returns the index of the column.
public final SortOrder getSortOrder()
Returns the sort order of the column.
public int hashCode()
Returns the hash code for this SortKey
.
hashCode
in class Object
Object.equals(java.lang.Object)
, System.identityHashCode(java.lang.Object)
public boolean equals(Object o)
Returns true if this object equals the specified object. If the specified object is a SortKey
and references the same column and sort order, the two objects are equal.
equals
in class Object
o
- the object to compare too
is equal to this SortKey
Object.hashCode()
, HashMap
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.