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,org.apache.wicket.util.io.IClusterable
public class SortParam<T> extends Object implements org.apache.wicket.util.io.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 booleanequals(Object o)TgetProperty()inthashCode()booleanisAscending()check if sort order is ascendingStringtoString()
-
-
-
Method Detail
-
getProperty
public T getProperty()
- Returns:
- sort property
-
isAscending
public boolean isAscending()
check if sort order is ascending- Returns:
trueif sort order is ascending,falseif sort order is descending
-
toString
public String toString()
- Overrides:
toStringin classObject- See Also:
Object.toString()
-
-