Java com.mongodb DBObject fields, constructors, methods, implement or subclass

Example usage for Java com.mongodb DBObject fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.mongodb DBObject.

The text is from its open source code.

Implementation

com.mongodb.DBObject has the following implementations.
Click this link to see all its implementation.

Method

booleancontainsField(String s)
Checks if this object contains a field with the given name.
booleancontainsKey(String key)
Deprecated
Objectget(String key)
Gets a field from this object by a given name.
booleanisPartialObject()
Whether #markAsPartialObject was ever called only matters if you are going to upsert and do not want to risk losing fields.
SetkeySet()
Returns this object's fields' names
Objectput(String key, Object v)
Sets a name/value pair in this object.
voidputAll(BSONObject o)
Sets all key/value pairs from an object into this object
ObjectremoveField(String key)
Removes a field with a given name from this object.
MaptoMap()
Returns a map representing this BSONObject.