Uses of Interface
org.dizitart.no2.common.RecordStream
-
Packages that use RecordStream Package Description org.dizitart.no2.collection org.dizitart.no2.common org.dizitart.no2.repository org.dizitart.no2.store -
-
Uses of RecordStream in org.dizitart.no2.collection
Subinterfaces of RecordStream in org.dizitart.no2.collection Modifier and Type Interface Description interfaceDocumentCursorThe DocumentCursor represents a cursor as a stream ofDocumentto iterate overNitriteCollection.find()results.Methods in org.dizitart.no2.collection that return RecordStream Modifier and Type Method Description RecordStream<Document>DocumentCursor. join(DocumentCursor foreignCursor, Lookup lookup)Performs a left outer join with a foreign cursor with the specified lookup parameters.RecordStream<Document>DocumentCursor. project(Document projection)Gets a lazy iterable containing all the selected keys of the result documents. -
Uses of RecordStream in org.dizitart.no2.common
Methods in org.dizitart.no2.common that return RecordStream Modifier and Type Method Description static <V> RecordStream<V>RecordStream. empty()Creates an emptyRecordStream.static <T> RecordStream<T>RecordStream. except(Iterable<T> iterable, Collection<T> elements)static <T> RecordStream<T>RecordStream. fromCombined(Iterable<T> first, Iterable<T> second)Creates aRecordStreamby combining twoIterables.static <T> RecordStream<T>RecordStream. fromIterable(Iterable<T> iterable)Creates aRecordStreamfrom anIterable.static <V> RecordStream<V>RecordStream. single(V v)Creates aRecordStreamwith a single element. -
Uses of RecordStream in org.dizitart.no2.repository
Subinterfaces of RecordStream in org.dizitart.no2.repository Modifier and Type Interface Description interfaceCursor<T>An interface to iterate overObjectRepository.find()results.Methods in org.dizitart.no2.repository that return RecordStream 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.<P> RecordStream<P>Cursor. project(Class<P> projectionType)Projects the result of one type into anIterableof another type. -
Uses of RecordStream in org.dizitart.no2.store
Methods in org.dizitart.no2.store that return RecordStream Modifier and Type Method Description RecordStream<Pair<Key,Value>>NitriteMap. entries()Gets aRecordStreamview of the mappings contained in this map.RecordStream<NitriteId>NitriteRTree. findContainedKeys(Key key)Finds the contained keys from the rtree.RecordStream<NitriteId>NitriteRTree. findIntersectingKeys(Key key)Finds the intersecting keys from the rtree.RecordStream<Pair<Key,Value>>NitriteMap. reversedEntries()Gets a reversedRecordStreamview of the mappings contained in this map.
-