Package | Description |
---|---|
com.mongodb |
Main package with core files.
|
com.mongodb.gridfs |
GridFS tools.
|
Modifier and Type | Method and Description |
---|---|
DBCollection |
MongoURI.connectCollection(DB db)
Returns the URI's Collection from a given DB object.
|
DBCollection |
MongoURI.connectCollection(Mongo mongo)
Returns the URI's Collection from a given Mongo instance
|
DBCollection |
DB.createCollection(String name,
DBObject options)
Creates a collection with a given name and options.
|
protected abstract DBCollection |
DB.doGetCollection(String name)
Gets a collection with a given name.
|
DBCollection |
DBCursor.getCollection()
Gets the collection.
|
DBCollection |
DBCollection.getCollection(String n)
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 s)
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)
Calls
rename(java.lang.String, boolean) with dropTarget=false |
DBCollection |
DBCollection.rename(String newName,
boolean dropTarget)
Renames of this collection to newName
|
Modifier and Type | Method and Description |
---|---|
com.mongodb.Response |
DBTCPConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
DBDecoder decoder)
Deprecated.
|
com.mongodb.Response |
DBConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
DBDecoder decoder)
Deprecated.
does a read operation on the database
|
com.mongodb.Response |
DBTCPConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
int retries)
Deprecated.
|
com.mongodb.Response |
DBConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
int retries)
Deprecated.
does a read operation on the database
|
com.mongodb.Response |
DBTCPConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
int retries,
ReadPreference readPref,
DBDecoder decoder)
Deprecated.
|
com.mongodb.Response |
DBConnector.call(DB db,
DBCollection coll,
com.mongodb.OutMessage m,
ServerAddress hostNeeded,
int retries,
ReadPreference readPref,
DBDecoder decoder)
Deprecated.
does a read operation on the database
|
DBCallback |
DBCallbackFactory.create(DBCollection collection)
Creates a DBCallback for the given collection.
|
DBObject |
LazyDBDecoder.decode(byte[] b,
DBCollection collection) |
DBObject |
DefaultDBDecoder.decode(byte[] b,
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 in,
DBCollection collection) |
DBObject |
DefaultDBDecoder.decode(InputStream in,
DBCollection collection) |
DBObject |
DBDecoder.decode(InputStream input,
DBCollection collection)
Decode a single DBObject belonging to the given collection from the given input stream.
|
DBCallback |
LazyWriteableDBDecoder.getDBCallback(DBCollection collection)
Deprecated.
|
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 q,
DBObject k,
ReadPreference preference)
Initializes a new database cursor.
|
DefaultDBCallback(DBCollection coll)
Creates a new DefaultDBCallback.
|
GroupCommand(DBCollection collection,
DBObject keys,
DBObject condition,
DBObject initial,
String reduce,
String finalize)
Creates a new group command.
|
LazyDBCallback(DBCollection collection)
Construct an instance.
|
LazyWriteableDBCallback(DBCollection collection)
Deprecated.
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
|
MapReduceOutput(DBCollection from,
DBObject cmd,
CommandResult raw)
Deprecated.
In the 3.0 version of the driver, this will be constructed only by the driver, and will therefore not have a public
constructor.
|
Modifier and Type | Field and Description |
---|---|
protected DBCollection |
GridFS._chunkCollection
Deprecated.
Please use
GridFS.getChunksCollection() for access. |
protected DBCollection |
GridFS._filesCollection
Deprecated.
Please use
GridFS.getFilesCollection() for access. |
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. |