Uses of Class
org.bson.types.ObjectId

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

Uses of ObjectId in org.bson
 

Methods in org.bson that return ObjectId
 ObjectId BasicBSONObject.getObjectId(String field)
          Returns the object id or null if not set.
 ObjectId BasicBSONObject.getObjectId(String field, ObjectId def)
          Returns the object id or def if not set.
 

Methods in org.bson with parameters of type ObjectId
 Object LazyBSONCallback.createDBRef(String ns, ObjectId id)
           
 ObjectId BasicBSONObject.getObjectId(String field, ObjectId def)
          Returns the object id or def if not set.
 void BasicBSONCallback.gotDBRef(String name, String ns, ObjectId id)
           
 void EmptyBSONCallback.gotDBRef(String name, String ns, ObjectId id)
           
 void BSONCallback.gotDBRef(String name, String ns, ObjectId id)
           
 void BasicBSONCallback.gotObjectId(String name, ObjectId id)
           
 void EmptyBSONCallback.gotObjectId(String name, ObjectId id)
           
 void BSONCallback.gotObjectId(String name, ObjectId id)
           
protected  void BasicBSONEncoder.putObjectId(String name, ObjectId oid)
           
 

Uses of ObjectId in org.bson.types
 

Methods in org.bson.types that return ObjectId
static ObjectId ObjectId.get()
          Gets a new object id.
static ObjectId ObjectId.massageToObjectId(Object o)
          Turn an object into an ObjectId, if possible.
 

Methods in org.bson.types with parameters of type ObjectId
 int ObjectId.compareTo(ObjectId id)