This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.swing
class RowSorter.SortKey

java.lang.Object extended by javax.swing.RowSorter.SortKey
Enclosing class:
RowSorter

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.


Constructor Summary
RowSorter.SortKey(int column, SortOrder sortOrder)

          Creates a SortKey for the specified column with the specified sort order.
 
Method Summary
 boolean

          Returns true if this object equals the specified object.
 int

          Returns the index of the column.
 SortOrder

          Returns the sort order of the column.
 int

          Returns the hash code for this SortKey.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RowSorter.SortKey

public RowSorter.SortKey(int column,
                         SortOrder sortOrder)
Creates a SortKey for the specified column with the specified sort order.

Parameters:
column - index of the column, in terms of the model
sortOrder - the sorter order
Method Detail

equals

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.

Overrides:
equals in class Object
Parameters:
o - the object to compare to
Returns:
true if o is equal to this SortKey

getColumn

public final int getColumn()
Returns the index of the column.

Returns:
index of column

getSortOrder

public final SortOrder getSortOrder()
Returns the sort order of the column.

Returns:
the sort order of the column

hashCode

public int hashCode()
Returns the hash code for this SortKey.

Overrides:
hashCode in class Object
Returns:
hash code


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.