Class ColumnSortList.ColumnSortInfo
java.lang.Object
com.google.gwt.user.cellview.client.ColumnSortList.ColumnSortInfo
- Enclosing class:
ColumnSortList
Information about the sort order of a specific column in a table.
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor used for RPC.ColumnSortInfo
(Column<?, ?> column, boolean ascending) Construct a newColumnSortList.ColumnSortInfo
. -
Method Summary
-
Constructor Details
-
ColumnSortInfo
Construct a newColumnSortList.ColumnSortInfo
.- Parameters:
column
- the column indexascending
- true if sorted ascending
-
ColumnSortInfo
ColumnSortInfo()Default constructor used for RPC.
-
-
Method Details
-
equals
Check if this object is equal to another. The objects are equal if the column and ascending values are the equal. -
getColumn
Get theColumn
that was sorted.- Returns:
- the
Column
-
hashCode
public int hashCode() -
isAscending
public boolean isAscending()Check if the column was sorted in ascending or descending order.- Returns:
- true if ascending, false if descending
-