Uses of Class
org.dizitart.no2.collection.FindOptions
-
Packages that use FindOptions Package Description org.dizitart.no2.collection org.dizitart.no2.repository -
-
Uses of FindOptions in org.dizitart.no2.collection
Methods in org.dizitart.no2.collection that return FindOptions Modifier and Type Method Description FindOptionsFindOptions. collator(Collator collator)Specifies theCollator.FindOptionsFindOptions. limit(Integer limit)Limit find options.FindOptionsFindOptions. limit(Long limit)Limit find options.static FindOptionsFindOptions. limitBy(long limit)Limit by find options.static FindOptionsFindOptions. orderBy(String fieldName, SortOrder sortOrder)Order by find options.FindOptionsFindOptions. skip(Integer skip)Skip find options.FindOptionsFindOptions. skip(Long skip)Skip find options.static FindOptionsFindOptions. skipBy(long skip)Skip by find options.FindOptionsFindOptions. thenOrderBy(String fieldName, SortOrder sortOrder)Then order by find options.static FindOptionsFindOptions. withDistinct()Indicates if the find operation should return distinct results.FindOptionsFindOptions. withDistinct(boolean distinct)Indicates if the find operation should return distinct and unique results.Methods in org.dizitart.no2.collection with parameters of type FindOptions Modifier and Type Method Description default DocumentCursorNitriteCollection. find(FindOptions findOptions)Returns a customized cursor to all documents in the collection.DocumentCursorNitriteCollection. find(Filter filter, FindOptions findOptions)Applies a filter on the collection and returns a customized cursor to the selected documents. -
Uses of FindOptions in org.dizitart.no2.repository
Methods in org.dizitart.no2.repository with parameters of type FindOptions Modifier and Type Method Description default Cursor<T>ObjectRepository. find(FindOptions findOptions)Returns a customized cursor to all objects in the collection.Cursor<T>ObjectRepository. find(Filter filter, FindOptions findOptions)Applies a filter on the collection and returns a customized cursor to the selected objects.
-