Uses of Class
com.mongodb.DBCollection

Packages that use DBCollection
com.mongodb Main package with core files. 
com.mongodb.gridfs GridFS tools. 
 

Uses of DBCollection in com.mongodb
 

Methods in com.mongodb that return DBCollection
 DBCollection MongoURI.connectCollection(DB db)
          returns the URI's Collection from a given DB object
 DBCollection MongoURI.connectCollection(Mongo m)
          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)
          Returns the collection represented by the string <dbName>.<collectionName>.
 DBCollection DBCursor.getCollection()
          gets the collection
 DBCollection DBCollection.getCollection(String n)
          Finds 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
 

Methods in com.mongodb with parameters of type DBCollection
 com.mongodb.Response DBTCPConnector.call(DB db, DBCollection coll, com.mongodb.OutMessage m, ServerAddress hostNeeded, DBDecoder decoder)
           
 com.mongodb.Response DBConnector.call(DB db, DBCollection coll, com.mongodb.OutMessage m, ServerAddress hostNeeded, DBDecoder decoder)
          does a read operation on the database
 com.mongodb.Response DBTCPConnector.call(DB db, DBCollection coll, com.mongodb.OutMessage m, ServerAddress hostNeeded, int retries)
           
 com.mongodb.Response DBConnector.call(DB db, DBCollection coll, com.mongodb.OutMessage m, ServerAddress hostNeeded, int retries)
          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)
           
 com.mongodb.Response DBConnector.call(DB db, DBCollection coll, com.mongodb.OutMessage m, ServerAddress hostNeeded, int retries, ReadPreference readPref, DBDecoder decoder)
          does a read operation on the database
 DBCallback DBCallbackFactory.create(DBCollection collection)
           
 DBObject LazyDBDecoder.decode(byte[] b, DBCollection collection)
           
 DBObject DefaultDBDecoder.decode(byte[] b, DBCollection collection)
           
 DBObject DBDecoder.decode(byte[] b, DBCollection collection)
           
 DBObject LazyDBDecoder.decode(InputStream in, DBCollection collection)
           
 DBObject DefaultDBDecoder.decode(InputStream in, DBCollection collection)
           
 DBObject DBDecoder.decode(InputStream in, DBCollection collection)
           
 DBCallback LazyWriteableDBDecoder.getDBCallback(DBCollection collection)
           
 DBCallback LazyDBDecoder.getDBCallback(DBCollection collection)
           
 DBCallback DefaultDBDecoder.getDBCallback(DBCollection collection)
           
 DBCallback DBDecoder.getDBCallback(DBCollection collection)
           
 

Constructors in com.mongodb with parameters of type DBCollection
DBCursor(DBCollection collection, DBObject q, DBObject k, ReadPreference preference)
          Initializes a new database cursor
DefaultDBCallback(DBCollection coll)
           
GroupCommand(DBCollection inputCollection, DBObject keys, DBObject condition, DBObject initial, String reduce, String finalize)
           
LazyDBCallback(DBCollection coll)
           
LazyWriteableDBCallback(DBCollection coll)
           
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)
           
 

Uses of DBCollection in com.mongodb.gridfs
 

Fields in com.mongodb.gridfs declared as DBCollection
protected  DBCollection GridFS._chunkCollection
           
protected  DBCollection GridFS._filesCollection