Class SortParam<T>
- java.lang.Object
-
- org.apache.wicket.extensions.markup.html.repeater.util.SortParam<T>
-
- Type Parameters:
T
- the type of the sort property
- All Implemented Interfaces:
Serializable
,IClusterable
public class SortParam<T> extends Object implements IClusterable
Represents sorting information of a property- Author:
- Igor Vaynberg ( ivaynberg )
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
T
getProperty()
int
hashCode()
boolean
isAscending()
check if sort order is ascendingString
toString()
-
-
-
Method Detail
-
getProperty
public T getProperty()
- Returns:
- sort property
-
isAscending
public boolean isAscending()
check if sort order is ascending- Returns:
true
if sort order is ascending,
false
if sort order is descending
-
toString
public String toString()
- Overrides:
toString
in classObject
- See Also:
Object.toString()
-
-