Uses of Class
com.mongodb.BasicDBObjectBuilder

Packages that use BasicDBObjectBuilder
com.mongodb Main package with core files. 
 

Uses of BasicDBObjectBuilder in com.mongodb
 

Methods in com.mongodb that return BasicDBObjectBuilder
 BasicDBObjectBuilder BasicDBObjectBuilder.add(String key, Object val)
          same as appends
 BasicDBObjectBuilder BasicDBObjectBuilder.append(String key, Object val)
          appends the key/value to the active object
 BasicDBObjectBuilder BasicDBObjectBuilder.pop()
          pops the active object, which means that the parent object becomes active
 BasicDBObjectBuilder BasicDBObjectBuilder.push(String key)
          creates an new empty object and inserts it into the current object with the given key.
static BasicDBObjectBuilder BasicDBObjectBuilder.start()
          Creates an empty object
static BasicDBObjectBuilder BasicDBObjectBuilder.start(Map m)
          Creates an object builder from an existing map.
static BasicDBObjectBuilder BasicDBObjectBuilder.start(String k, Object val)
          creates an object with the given key/value