Uses of Interface
org.dizitart.no2.repository.Cursor
-
Packages that use Cursor Package Description org.dizitart.no2.repository -
-
Uses of Cursor in org.dizitart.no2.repository
Methods in org.dizitart.no2.repository that return Cursor Modifier and Type Method Description default Cursor<T>ObjectRepository. find()Returns a cursor to all objects in the collection.default Cursor<T>ObjectRepository. find(FindOptions findOptions)Returns a customized cursor to all objects in the collection.default Cursor<T>ObjectRepository. find(Filter filter)Applies a filter on the collection and returns a cursor to the selected objects.Cursor<T>ObjectRepository. find(Filter filter, FindOptions findOptions)Applies a filter on the collection and returns a customized cursor to the selected objects.Methods in org.dizitart.no2.repository with parameters of type Cursor Modifier and Type Method Description <Foreign,Joined>
RecordStream<Joined>Cursor. join(Cursor<Foreign> foreignCursor, Lookup lookup, Class<Joined> type)Performs a left outer join with a foreign cursor with the specified lookup parameters.
-