public class PropertyComparator extends Object implements Comparator
BeanWrapper
Constructor and Description |
---|
PropertyComparator(SortDefinition sortDefinition)
Create a new PropertyComparator for the given SortDefinition.
|
PropertyComparator(String property,
boolean ignoreCase,
boolean ascending)
Create a PropertyComparator for the given settings.
|
Modifier and Type | Method and Description |
---|---|
int |
compare(Object o1,
Object o2) |
SortDefinition |
getSortDefinition()
Return the SortDefinition that this comparator uses.
|
static void |
sort(List source,
SortDefinition sortDefinition)
Sort the given List according to the given sort definition.
|
static void |
sort(Object[] source,
SortDefinition sortDefinition)
Sort the given source according to the given sort definition.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals
protected final Log logger
public PropertyComparator(SortDefinition sortDefinition)
MutableSortDefinition
public PropertyComparator(String property, boolean ignoreCase, boolean ascending)
property
- the property to compareignoreCase
- whether upper and lower case in String values should be ignoredascending
- whether to sort ascending (true) or descending (false)public final SortDefinition getSortDefinition()
public int compare(Object o1, Object o2)
compare
in interface Comparator
public static void sort(List source, SortDefinition sortDefinition) throws BeansException
Note: Contained objects have to provide the given property in the form of a bean property, i.e. a getXXX method.
source
- the input ListsortDefinition
- the parameters to sort byIllegalArgumentException
- in case of a missing propertyNameBeansException
public static void sort(Object[] source, SortDefinition sortDefinition) throws BeansException
Note: Contained objects have to provide the given property in the form of a bean property, i.e. a getXXX method.
source
- input sourcesortDefinition
- the parameters to sort byIllegalArgumentException
- in case of a missing propertyNameBeansException