Uses of Interface
org.bson.BSONObject

Packages that use BSONObject
org.bson Contains the base BSON classes and Encoder/Decoder. 
org.bson.types Contains classes implementing various BSON types. 
 

Uses of BSONObject in org.bson
 

Classes in org.bson that implement BSONObject
 class BasicBSONObject
          A simple implementation of DBObject.
 class KeyCachingLazyBSONObject
           
 class LazyBSONList
           
 class LazyBSONObject
           
 class LazyDBList
           
 

Methods in org.bson that return BSONObject
 BSONObject BasicBSONCallback.create()
           
 BSONObject BasicBSONCallback.create(boolean array, List<String> path)
           
protected  BSONObject BasicBSONCallback.createList()
           
protected  BSONObject BasicBSONCallback.cur()
           
static BSONObject BSON.decode(byte[] b)
           
 BSONObject BasicBSONDecoder.readObject(byte[] b)
           
 BSONObject NewBSONDecoder.readObject(byte[] pData)
           
 BSONObject BSONDecoder.readObject(byte[] b)
           
 BSONObject LazyBSONDecoder.readObject(byte[] b)
           
 BSONObject BasicBSONDecoder.readObject(InputStream in)
           
 BSONObject NewBSONDecoder.readObject(InputStream pIn)
           
 BSONObject BSONDecoder.readObject(InputStream in)
           
 BSONObject LazyBSONDecoder.readObject(InputStream in)
           
 

Methods in org.bson with parameters of type BSONObject
static byte[] BSON.encode(BSONObject o)
           
 byte[] BasicBSONEncoder.encode(BSONObject o)
           
 byte[] BSONEncoder.encode(BSONObject o)
           
protected  boolean BasicBSONEncoder.handleSpecialObjects(String name, BSONObject o)
           
 void BSONObject.putAll(BSONObject o)
          Sets all key/value pairs from an object into this object
 void LazyBSONObject.putAll(BSONObject o)
           
 void BasicBSONObject.putAll(BSONObject o)
           
 int BasicBSONEncoder.putObject(BSONObject o)
          Encodes a BSONObject.
 int BSONEncoder.putObject(BSONObject o)
           
protected  int BasicBSONEncoder.putObject(String name, BSONObject o)
          this is really for embedded objects
 

Uses of BSONObject in org.bson.types
 

Classes in org.bson.types that implement BSONObject
 class BasicBSONList
          Utility class to allow array DBObjects to be created.
 

Methods in org.bson.types that return BSONObject
 BSONObject CodeWScope.getScope()
           
 

Methods in org.bson.types with parameters of type BSONObject
 void BasicBSONList.putAll(BSONObject o)
           
 

Constructors in org.bson.types with parameters of type BSONObject
CodeWScope(String code, BSONObject scope)