Class Order
- java.lang.Object
-
- de.digitalcollections.model.list.sorting.Order
-
public class Order extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOrder.OrderBuilder<C extends Order,B extends Order.OrderBuilder<C,B>>
-
Constructor Summary
Constructors Constructor Description Order()Order(Direction direction, boolean ignoreCase, NullHandling nullHandling, String property)Order(Direction direction, String property)Creates a newOrderinstance.Order(Direction direction, String property, NullHandling nullHandlingHint)Creates a newOrderinstance.Order(String property)Creates a newOrderinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)DirectiongetDirection()Returns the order the property shall be sorted for.NullHandlinggetNullHandling()Returns the usedNullHandlinghint, which can but may not be respected by the used datastore.StringgetProperty()Returns the property to order for.Optional<String>getSubProperty()Returns the optional sub property to order for.inthashCode()protected voidinit()booleanisAscending()Returns whether sorting for this property shall be ascending.booleanisDescending()Returns whether sorting for this property shall be descending.booleanisIgnoreCase()Returns whether or not the sort will be case sensitive.voidsetDirection(Direction direction)voidsetIgnoreCase(boolean ignoreCase)voidsetNullHandling(NullHandling nullHandling)voidsetProperty(String property)voidsetSubProperty(String property)StringtoString()
-
-
-
Constructor Detail
-
Order
public Order()
-
Order
public Order(Direction direction, boolean ignoreCase, NullHandling nullHandling, String property)
-
Order
public Order(Direction direction, String property)
Creates a newOrderinstance. if order is null then order defaults toSorting.DEFAULT_DIRECTION- Parameters:
direction- can be null, will default toSorting.DEFAULT_DIRECTIONproperty- must not be null or empty.
-
Order
public Order(Direction direction, String property, NullHandling nullHandlingHint)
Creates a newOrderinstance. if order is null then order defaults toSorting.DEFAULT_DIRECTION- Parameters:
direction- can be null, will default toSorting.DEFAULT_DIRECTIONproperty- must not be null or empty.nullHandlingHint- can be null, will default toNullHandling.NATIVE.
-
Order
public Order(String property)
Creates a newOrderinstance. Takes a single property. Direction defaults toSorting.DEFAULT_DIRECTION.- Parameters:
property- must not be null or empty.
-
-
Method Detail
-
getDirection
public Direction getDirection()
Returns the order the property shall be sorted for.- Returns:
- the order the property shall be sorted for
-
getNullHandling
public NullHandling getNullHandling()
Returns the usedNullHandlinghint, which can but may not be respected by the used datastore.- Returns:
- the used NullHandling hint, which can but may not be respected by the used datastore.
-
getProperty
public String getProperty()
Returns the property to order for.- Returns:
- the property to order for
-
getSubProperty
public Optional<String> getSubProperty()
Returns the optional sub property to order for.A sub property is always related to the main property.
- Returns:
- the optional sub property to order for
-
init
protected void init()
-
isAscending
public boolean isAscending()
Returns whether sorting for this property shall be ascending.- Returns:
- whether sorting for this property shall be ascending
-
isDescending
public boolean isDescending()
Returns whether sorting for this property shall be descending.- Returns:
- whether sorting for this property shall be descending
-
isIgnoreCase
public boolean isIgnoreCase()
Returns whether or not the sort will be case sensitive.- Returns:
- whether or not the sort will be case sensitive
-
setDirection
public void setDirection(Direction direction)
-
setIgnoreCase
public void setIgnoreCase(boolean ignoreCase)
-
setNullHandling
public void setNullHandling(NullHandling nullHandling)
-
setProperty
public void setProperty(String property)
-
setSubProperty
public void setSubProperty(String property)
-
-