Uses of Class
org.forgerock.opendj.ldap.SortKey
-
Packages that use SortKey Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.controls Classes and interfaces for common LDAP controls. -
-
Uses of SortKey in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return SortKey Modifier and Type Method Description static SortKey
SortKey. valueOf(String sortKey)
Parses the provided string representation of a sort key as aSortKey
.Methods in org.forgerock.opendj.ldap with parameters of type SortKey Modifier and Type Method Description static Comparator<Entry>
SortKey. comparator(Schema schema, SortKey... keys)
Returns aComparator
which can be used to compare entries using the provided list of sort keys.static Comparator<Entry>
SortKey. comparator(SortKey... keys)
Returns aComparator
which can be used to compare entries using the provided list of sort keys.Method parameters in org.forgerock.opendj.ldap with type arguments of type SortKey Modifier and Type Method Description static Comparator<Entry>
SortKey. comparator(Collection<SortKey> keys)
Returns aComparator
which can be used to compare entries using the provided list of sort keys.static Comparator<Entry>
SortKey. comparator(Schema schema, Collection<SortKey> keys)
Returns aComparator
which can be used to compare entries using the provided list of sort keys. -
Uses of SortKey in org.forgerock.opendj.ldap.controls
Methods in org.forgerock.opendj.ldap.controls that return types with arguments of type SortKey Modifier and Type Method Description List<SortKey>
ServerSideSortRequestControl. getSortKeys()
Returns an unmodifiable list containing the sort keys associated with this server side sort request control.Methods in org.forgerock.opendj.ldap.controls with parameters of type SortKey Modifier and Type Method Description static ServerSideSortRequestControl
ServerSideSortRequestControl. newControl(boolean isCritical, SortKey... keys)
Creates a new server side sort request control with the provided criticality and list of sort keys.Method parameters in org.forgerock.opendj.ldap.controls with type arguments of type SortKey Modifier and Type Method Description static ServerSideSortRequestControl
ServerSideSortRequestControl. newControl(boolean isCritical, Collection<SortKey> keys)
Creates a new server side sort request control with the provided criticality and list of sort keys.
-