Uses of Class
org.bremersee.comparator.model.ComparatorField
-
Packages that use ComparatorField Package Description org.bremersee.comparator This package contains general mechanism for comparing and sorting objects.org.bremersee.comparator.model This package contains the model of the comparator.org.bremersee.comparator.spring This package contains the spring framework integration. -
-
Uses of ComparatorField in org.bremersee.comparator
Methods in org.bremersee.comparator that return ComparatorField Modifier and Type Method Description default ComparatorFieldWellKnownTextParser. buildComparatorField(String fieldDescription)Builds a comparator field from the string representation of a sort order (must be a single field, not a path).Methods in org.bremersee.comparator that return types with arguments of type ComparatorField Modifier and Type Method Description default List<ComparatorField>WellKnownTextParser. buildComparatorFields(String wkt)Builds a list of comparator fields from the string representation of a sort order.Methods in org.bremersee.comparator with parameters of type ComparatorField Modifier and Type Method Description default ComparatorBuilderComparatorBuilder. add(ComparatorField field)Creates and adds a value comparator for the given field ordering description.default ComparatorBuilderComparatorBuilder. add(ComparatorField field, ValueExtractor valueExtractor)Creates and adds a value comparator for the given field ordering description.ComparatorWellKnownTextParser. apply(ComparatorField comparatorField)Creates the comparator for the given field.Method parameters in org.bremersee.comparator with type arguments of type ComparatorField Modifier and Type Method Description default ComparatorBuilderComparatorBuilder. addAll(Collection<? extends ComparatorField> fields)Creates and adds value comparators for the given field ordering descriptions.default ComparatorBuilderComparatorBuilder. addAll(Collection<? extends ComparatorField> fields, ValueExtractor valueExtractor)Creates and adds value comparators for the given field ordering descriptions.Constructors in org.bremersee.comparator with parameters of type ComparatorField Constructor Description ValueComparator(ComparatorField comparatorField)Instantiates a new value comparator.ValueComparator(ComparatorField comparatorField, ValueExtractor valueExtractor)Instantiates a new value comparator. -
Uses of ComparatorField in org.bremersee.comparator.model
Methods in org.bremersee.comparator.model that return ComparatorField Modifier and Type Method Description ComparatorFieldObjectFactory. createComparatorField()Create comparator field.Methods in org.bremersee.comparator.model that return types with arguments of type ComparatorField Modifier and Type Method Description List<ComparatorField>ComparatorFields. getFields()Gets the list of comparator fields.Constructor parameters in org.bremersee.comparator.model with type arguments of type ComparatorField Constructor Description ComparatorFields(Collection<? extends ComparatorField> fields)Instantiates a new list of comparator fields. -
Uses of ComparatorField in org.bremersee.comparator.spring
Methods in org.bremersee.comparator.spring that return ComparatorField Modifier and Type Method Description static ComparatorFieldComparatorSpringUtils. fromSortOrder(org.springframework.data.domain.Sort.Order sortOrder)Transforms aSort.Orderobject into a comparator field.Methods in org.bremersee.comparator.spring that return types with arguments of type ComparatorField Modifier and Type Method Description static List<ComparatorField>ComparatorSpringUtils. fromSort(org.springframework.data.domain.Sort sort)Transforms aSortobject into a comparator field list.Methods in org.bremersee.comparator.spring with parameters of type ComparatorField Modifier and Type Method Description static org.springframework.data.domain.Sort.OrderComparatorSpringUtils. toSortOrder(ComparatorField comparatorField)Transforms the comparator field into aSort.Orderobject.Method parameters in org.bremersee.comparator.spring with type arguments of type ComparatorField Modifier and Type Method Description static org.springframework.data.domain.SortComparatorSpringUtils. toSort(Collection<? extends ComparatorField> comparatorFields)Transforms the comparator field into aSortobject.
-