Package | Description |
---|---|
com.mongodb | |
com.mongodb.gridfs |
Contains the classes for supporting MongoDB's specification for storing very large files, GridFS.
|
Modifier and Type | Method and Description |
---|---|
DBCollection |
MongoURI.connectCollection(DB db)
Deprecated.
Returns the URI's Collection from a given DB object.
|
DBCollection |
MongoURI.connectCollection(Mongo mongo)
Deprecated.
Returns the URI's Collection from a given Mongo instance
|
DBCollection |
DB.createCollection(String collectionName,
DBObject options)
Creates a collection with a given name and options.
|
DBCollection |
DB.createView(String viewName,
String viewOn,
List<? extends DBObject> pipeline)
Creates a view with the given name, backing collection/view name, and aggregation pipeline that defines the view.
|
DBCollection |
DB.createView(String viewName,
String viewOn,
List<? extends DBObject> pipeline,
DBCreateViewOptions options)
Creates a view with the given name, backing collection/view name, aggregation pipeline, and options that defines the view.
|
protected DBCollection |
DB.doGetCollection(String name)
Gets a collection with a given name.
|
DBCollection |
DBCursor.getCollection()
Gets the collection.
|
DBCollection |
DBCollection.getCollection(String name)
Find a collection that is prefixed with this collection's name.
|
DBCollection |
DB.getCollection(String name)
Gets a collection with a given name.
|
DBCollection |
DB.getCollectionFromString(String collectionName)
Returns a collection matching a given string.
|
DBCollection |
MapReduceOutput.getOutputCollection()
Gets the collection that holds the results (Will return null if results are Inline).
|
DBCollection |
DBCollection.rename(String newName)
Change the name of an existing collection.
|
DBCollection |
DBCollection.rename(String newName,
boolean dropTarget)
Change the name of an existing collection.
|
Modifier and Type | Method and Description |
---|---|
DBCallback |
DBCallbackFactory.create(DBCollection collection)
Creates a DBCallback for the given collection.
|
DBObject |
LazyDBDecoder.decode(byte[] bytes,
DBCollection collection) |
DBObject |
DefaultDBDecoder.decode(byte[] bytes,
DBCollection collection) |
DBObject |
DBDecoder.decode(byte[] bytes,
DBCollection collection)
Decode a single DBObject belonging to the given collection from the given array of bytes.
|
DBObject |
LazyDBDecoder.decode(InputStream input,
DBCollection collection) |
DBObject |
DefaultDBDecoder.decode(InputStream input,
DBCollection collection) |
DBObject |
DBDecoder.decode(InputStream input,
DBCollection collection)
Decode a single DBObject belonging to the given collection from the given input stream.
|
DBCallback |
LazyDBDecoder.getDBCallback(DBCollection collection) |
DBCallback |
DefaultDBDecoder.getDBCallback(DBCollection collection) |
DBCallback |
DBDecoder.getDBCallback(DBCollection collection)
Get a callback for the given collection.
|
Constructor and Description |
---|
DBCursor(DBCollection collection,
DBObject query,
DBObject fields,
com.mongodb.ReadPreference readPreference)
Initializes a new database cursor.
|
DefaultDBCallback(DBCollection collection)
Creates a new DefaultDBCallback.
|
GroupCommand(DBCollection collection,
DBObject keys,
DBObject condition,
DBObject initial,
String reduce,
String finalize)
Creates a new group command.
|
GroupCommand(DBCollection collection,
DBObject keys,
DBObject condition,
DBObject initial,
String reduce,
String finalize,
com.mongodb.client.model.Collation collation)
Creates a new group command.
|
GroupCommand(DBCollection collection,
String keyf,
DBObject condition,
DBObject initial,
String reduce,
String finalize)
Creates a new group command.
|
GroupCommand(DBCollection collection,
String keyf,
DBObject condition,
DBObject initial,
String reduce,
String finalize,
com.mongodb.client.model.Collation collation)
Creates a new group command.
|
LazyDBCallback(DBCollection collection)
Construct an instance.
|
MapReduceCommand(DBCollection inputCollection,
String map,
String reduce,
String outputCollection,
MapReduceCommand.OutputType type,
DBObject query)
Represents the command for a map reduce operation Runs the command in REPLACE output type to a named collection
|
Modifier and Type | Method and Description |
---|---|
protected DBCollection |
GridFS.getChunksCollection()
Gets the
DBCollection in which the binary chunks are stored. |
protected DBCollection |
GridFS.getFilesCollection()
Gets the
DBCollection in which the file's metadata is stored. |
Copyright © 2017. All rights reserved.