Package com.vaadin.v7.data.sort
Class SortOrder
- java.lang.Object
-
- com.vaadin.v7.data.sort.SortOrder
-
- All Implemented Interfaces:
Serializable
@Deprecated public class SortOrder extends Object implements Serializable
Deprecated.Sort order descriptor. Links together aSortDirectionvalue and a Vaadin container property ID.- Since:
- 7.4
- Author:
- Vaadin Ltd
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object obj)Deprecated.com.vaadin.shared.data.sort.SortDirectiongetDirection()Deprecated.Returns theSortDirectionvalue.ObjectgetPropertyId()Deprecated.Returns the property ID.inthashCode()Deprecated.StringtoString()Deprecated.
-
-
-
Constructor Detail
-
SortOrder
public SortOrder(Object propertyId, com.vaadin.shared.data.sort.SortDirection direction)
Deprecated.Create a SortOrder object. Both arguments must be non-null.- Parameters:
propertyId- id of the data source property to sort bydirection- value indicating whether the property id should be sorted in ascending or descending order
-
-
Method Detail
-
getPropertyId
public Object getPropertyId()
Deprecated.Returns the property ID.- Returns:
- a property ID
-
getDirection
public com.vaadin.shared.data.sort.SortDirection getDirection()
Deprecated.Returns theSortDirectionvalue.- Returns:
- a sort direction value
-
-