public class CBOSorter
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
CBOSorter.BOComparator |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ASC |
static java.lang.String |
DESC |
Modifier and Type | Method and Description |
---|---|
static void |
checkValidSortDir(java.lang.String sortDir) |
java.util.ArrayList |
getSortedList(java.util.Collection<? extends BOI> coll,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale)
Returns the given
Collection sorted by the given attribute names in the given order. |
java.util.ArrayList |
getSortedList(java.util.Collection<? extends BOI> coll,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale,
java.lang.Class<? extends BOI> clazz)
Returns the given
Collection sorted by the given attribute names in the given order. |
java.util.ArrayList |
getSortedList(java.util.Collection<? extends BOI> coll,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale,
java.lang.Class<? extends BOI> clazz,
java.util.Comparator boc)
Returns the given
Collection sorted by the given attribute names in the given order. |
java.util.ArrayList |
getSortedList(java.util.Map map,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale)
Returns the given
Map sorted by the given attribute names in the given order. |
java.util.ArrayList |
getSortedList(java.util.Map map,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale,
java.lang.Class<? extends BOI> clazz)
Returns the given
Map sorted by the given attribute names in the given order. |
java.util.ArrayList |
getSortedList(java.util.Map map,
java.lang.String[] attrPaths,
java.lang.String[] directions,
java.util.Locale locale,
java.lang.Class<? extends BOI> clazz,
java.util.Comparator boc)
Returns the given
Map sorted by the given attribute names in the given order. |
public static final java.lang.String ASC
public static final java.lang.String DESC
public CBOSorter(SchemaI _schema)
public static final void checkValidSortDir(java.lang.String sortDir) throws java.lang.IllegalArgumentException
java.lang.IllegalArgumentException
public java.util.ArrayList getSortedList(java.util.Map map, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale)
Map
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.
The class of the first non-null map entry value in the passed map will be used to get the attributes from for comparison.
A new BOComparator will be built for comparing.
This method is simply a wrapper for getSortedList(Map, String[], String[], Locale, Class, Comparator)
.map
- The Map
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.public java.util.ArrayList getSortedList(java.util.Map map, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale, java.lang.Class<? extends BOI> clazz)
Map
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.
A new BOComparator will be built for comparing.
This method is simply a wrapper for getSortedList(Map, String[], String[], Locale, Class, Comparator)
.map
- The Map
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.clazz
- The entity class to get the attributes from for comparison.
If it is null, the class of the first non-null map entry value in the passed map will be used.public java.util.ArrayList getSortedList(java.util.Map map, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale, java.lang.Class<? extends BOI> clazz, java.util.Comparator boc)
Map
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.
This method is simply a wrapper for getSortedList(Collection, String[], String[], Locale,
Class, Comparator)
.map
- The Map
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.clazz
- The entity class to get the attributes from for comparison.
If it is null, the class of the first non-null map entry value in the passed map will be used.boc
- A custom BOComparator to use. If it is null, a new BOComparator will be built for comparing.public java.util.ArrayList getSortedList(java.util.Collection<? extends BOI> coll, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale)
Collection
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.
The class of the first non-null entry in the passed collection will be used to get the attributes from for comparison.
A new BOComparator will be built for comparing.
This method is simply a wrapper for getSortedList(Collection, String[], String[], Locale,
Class, Comparator)
.coll
- The Collection
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.public java.util.ArrayList getSortedList(java.util.Collection<? extends BOI> coll, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale, java.lang.Class<? extends BOI> clazz)
Collection
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.
A new BOComparator will be built for comparing.
This method is simply a wrapper for getSortedList(Collection, String[], String[], Locale,
Class, Comparator)
.coll
- The Collection
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.clazz
- The entity class to get the attributes from for comparison.
If it is null, the class of the first non-null entry in the passed collection will be used.public java.util.ArrayList getSortedList(java.util.Collection<? extends BOI> coll, java.lang.String[] attrPaths, java.lang.String[] directions, java.util.Locale locale, java.lang.Class<? extends BOI> clazz, java.util.Comparator boc)
Collection
sorted by the given attribute names in the given order.
The given directions must have the same count as the given attribute names.coll
- The Collection
to sort.attrPaths
- The attribute names to use for sorting.directions
- The sort directions for the given attribute names.locale
- The locale to use for comparing.clazz
- The entity class to get the attributes from for comparison.
If it is null, the class of the first non-null entry in the passed collection will be used.boc
- A custom BOComparator to use. If it is null, a new BOComparator will be built for comparing.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.