Uses of Interface
com.blazebit.persistence.view.Sorter
Packages that use Sorter
Package
Description
Entity-View extension for the Blaze-Persistence API.
-
Uses of Sorter in com.blazebit.persistence.view
Methods in com.blazebit.persistence.view that return SorterModifier and TypeMethodDescriptionstatic SorterSorters.ascending()LikeSorters.ascending(boolean)but withnullsFirstset to false.static SorterSorters.ascending(boolean nullsFirst) LikeSorters.sorter(boolean, boolean)but withascendingset to true.static SorterSorters.descending()LikeSorters.descending(boolean)but withnullsFirstset to false.static SorterSorters.descending(boolean nullsFirst) LikeSorters.sorter(boolean, boolean)but withascendingset to false.static SorterSorters.sorter(boolean ascending, boolean nullsFirst) Creates and returns a newSorter.Methods in com.blazebit.persistence.view that return types with arguments of type SorterModifier and TypeMethodDescriptionEntityViewSetting.getAttributeSorters()Returns a copy of the attribute sorters that have been added.Methods in com.blazebit.persistence.view with parameters of type SorterModifier and TypeMethodDescriptionvoidEntityViewSetting.addAttributeSorter(AttributePath<T, ?, ?> attributePath, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.voidEntityViewSetting.addAttributeSorter(MethodAttribute<T, ?> attribute, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.voidEntityViewSetting.addAttributeSorter(String attributeName, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.EntityViewSetting.withAttributeSorter(AttributePath<T, ?, ?> attributePath, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.EntityViewSetting.withAttributeSorter(MethodAttribute<T, ?> attribute, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.EntityViewSetting.withAttributeSorter(String attributeName, Sorter sorter) Adds the given attribute sorter to the attribute sorters of this setting.Method parameters in com.blazebit.persistence.view with type arguments of type SorterModifier and TypeMethodDescriptionvoidEntityViewSetting.addAttributeSorters(Map<String, Sorter> attributeSorters) Adds the given attribute sorters to the attribute sorters of this setting.