Class ColumnSortList.ColumnSortInfo
- java.lang.Object
-
- com.google.gwt.user.cellview.client.ColumnSortList.ColumnSortInfo
-
- Enclosing class:
- ColumnSortList
public static class ColumnSortList.ColumnSortInfo extends java.lang.ObjectInformation about the sort order of a specific column in a table.
-
-
Constructor Summary
Constructors Constructor Description ColumnSortInfo()Default constructor used for RPC.ColumnSortInfo(Column<?,?> column, boolean ascending)Construct a newColumnSortList.ColumnSortInfo.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Check if this object is equal to another.Column<?,?>getColumn()Get theColumnthat was sorted.inthashCode()booleanisAscending()Check if the column was sorted in ascending or descending order.
-
-
-
Constructor Detail
-
ColumnSortInfo
public ColumnSortInfo(Column<?,?> column, boolean ascending)
Construct a newColumnSortList.ColumnSortInfo.- Parameters:
column- the column indexascending- true if sorted ascending
-
ColumnSortInfo
ColumnSortInfo()
Default constructor used for RPC.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
Check if this object is equal to another. The objects are equal if the column and ascending values are the equal.- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- the object to check for equality- Returns:
- true if objects are the same
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
isAscending
public boolean isAscending()
Check if the column was sorted in ascending or descending order.- Returns:
- true if ascending, false if descending
-
-