Uses of Interface
org.springframework.beans.support.SortDefinition
Packages that use SortDefinition
Package
Description
Classes supporting the org.springframework.beans package,
such as utility classes for sorting and holding lists of beans.
-
Uses of SortDefinition in org.springframework.beans.support
Classes in org.springframework.beans.support that implement SortDefinitionMethods in org.springframework.beans.support that return SortDefinitionModifier and TypeMethodDescriptionprotected SortDefinitionPagedListHolder.copySortDefinition(SortDefinition sort) Create a deep copy of the given sort definition, for use as state holder to compare a modified sort definition against.PagedListHolder.getSort()Return the sort definition for this holder.final SortDefinitionPropertyComparator.getSortDefinition()Return the SortDefinition that this comparator uses.Methods in org.springframework.beans.support with parameters of type SortDefinitionModifier and TypeMethodDescriptionprotected SortDefinitionPagedListHolder.copySortDefinition(SortDefinition sort) Create a deep copy of the given sort definition, for use as state holder to compare a modified sort definition against.protected voidPagedListHolder.doSort(List<E> source, SortDefinition sort) Actually perform sorting of the given source list, according to the given sort definition.voidPagedListHolder.setSort(SortDefinition sort) Set the sort definition for this holder.static voidPropertyComparator.sort(Object[] source, SortDefinition sortDefinition) Sort the given source according to the given sort definition.static voidPropertyComparator.sort(List<?> source, SortDefinition sortDefinition) Sort the given List according to the given sort definition.Constructors in org.springframework.beans.support with parameters of type SortDefinitionModifierConstructorDescriptionMutableSortDefinition(SortDefinition source) Copy constructor: create a new MutableSortDefinition that mirrors the given sort definition.PagedListHolder(List<E> source, SortDefinition sort) Create a new holder instance with the given source list.PropertyComparator(SortDefinition sortDefinition) Create a new PropertyComparator for the given SortDefinition.