Package | Description |
---|---|
com.mongodb |
The core mongodb package
|
com.mongodb.async.client |
This packages contains classes for the new async client
|
com.mongodb.async.client.gridfs |
Contains the classes for supporting MongoDB's specification for storing very large files, GridFS.
|
com.mongodb.client |
This package contains classes for the new client api for MongoDatabase and MongoCollection
|
com.mongodb.client.gridfs |
This package contains the new GridFS implementation
|
com.mongodb.operation |
The core of the MongoDB driver works via operations, using the command pattern.
|
Modifier and Type | Field and Description |
---|---|
private Function<U,V> |
MappingIterable.mapper |
private Function<T,U> |
MongoMappingCursor.mapper |
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
MongoIterableImpl.map(Function<TResult,U> mapper) |
<W> MongoIterable<W> |
MappingIterable.map(Function<V,W> newMap) |
Constructor and Description |
---|
MappingIterable(MongoIterable<U> iterable,
Function<U,V> mapper) |
MongoMappingCursor(MongoCursor<T> proxied,
Function<T,U> mapper) |
Modifier and Type | Field and Description |
---|---|
private Function<T,U> |
MappingAsyncBatchCursor.mapper |
private Function<U,V> |
MappingIterable.mapper |
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
MongoIterable.map(Function<TResult,U> mapper)
Maps this iterable from the source document type to the target document type.
|
<U> MongoIterable<U> |
MongoIterableImpl.map(Function<TResult,U> mapper) |
<W> MongoIterable<W> |
MappingIterable.map(Function<V,W> mapper) |
Constructor and Description |
---|
MappingAsyncBatchCursor(AsyncBatchCursor<T> batchCursor,
Function<T,U> mapper) |
MappingIterable(MongoIterable<U> iterable,
Function<U,V> mapper) |
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
GridFSFindIterableImpl.map(Function<GridFSFile,U> mapper) |
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
MongoIterable.map(Function<TResult,U> mapper)
Maps this iterable from the source document type to the target document type.
|
Modifier and Type | Method and Description |
---|---|
<U> MongoIterable<U> |
GridFSFindIterableImpl.map(Function<GridFSFile,U> mapper) |
Modifier and Type | Method and Description |
---|---|
(package private) <R> R |
ChangeStreamBatchCursor.resumeableOperation(Function<BatchCursor<RawBsonDocument>,R> function) |