Package com.mongodb

Main package with core files.

See:
          Description

Interface Summary
DBConnector  
DBObject A key-value map that can be saved to the database.
Transformer  
 

Class Summary
BasicDBList Utility class to allow array DBObjects to be created.
BasicDBObject A simple implementation of DBObject.
BasicDBObjectBuilder utility for building objects example: BasicDBObjectBuilder.start().add( "name" , "eliot" ).add( "number" , 17 ).get()
ByteDecoder Deserializes a string from the database into a DBObject.
ByteEncoder Serializes a DBObject into a string that can be sent to the database.
Bytes Handles byte functions for ByteEncoder and ByteDecoder.
CodeWScope for using the CodeWScope type
DB a logical database on a server
DBAddress Aquires the address of the database(s).
DBApiLayer Database API This cannot be directly instantiated, but the functions are available through instances of Mongo.
DBBinary generic binary holder
DBCollection This class provides a skeleton implementation of a database collection.
DBCursor An iterator over database results.
DBMessage Creates a message to send to the database.
DBPointer Deprecated.  
DBPort  
DBRef Database reference class.
DBRefBase Base class for DBRefs.
DBRegex Deprecated.  
DBSymbol Class to hold a BSON symbol object, which is an interned string in Ruby
DBTimestamp this is used for internal increment values.
DBUndefined Class to represent BSON 'undefined' type
MapReduceOutput  
Mongo A database connection with internal pooling.
MongoOptions Various settings for the driver
ObjectId A globally unique identifier for objects.
QueryBuilder Utility for creating DBObject queries
QueryOperators MongoDB keywords for various query operations
RawDBObject This object wraps the binary object format ("BSON") used for the transport of serialized objects to / from the Mongo database.
ReflectionDBObject  
ReflectionDBObject.JavaWrapper  
ServerAddress mongo server address
 

Enum Summary
DB.WriteConcern Settings for strictness of error checking on writes (inserts, updates, and removes).
 

Exception Summary
MongoException  
MongoException.DuplicateKey  
MongoException.Network  
MongoInternalException  
 

Package com.mongodb Description

Main package with core files. @see Mongo is the main entry point.