Interface ObjectOrdering
-
- All Superinterfaces:
Serializable
public interface ObjectOrdering extends Serializable
Describes definition of object ordering.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(Object o, boolean exact)
@Nullable OrderDirection
getDirection()
Ordering direction, can return null, which should be interpreted as ascending.ItemPath
getOrderBy()
Item path by which to order - should not be null or empty.
-
-
-
Method Detail
-
getOrderBy
ItemPath getOrderBy()
Item path by which to order - should not be null or empty.
-
getDirection
@Nullable @Nullable OrderDirection getDirection()
Ordering direction, can return null, which should be interpreted as ascending.
-
equals
boolean equals(Object o, boolean exact)
-
-