public class BasicDBObject extends BasicBSONObject implements DBObject
DBObject
can be created as follows, using this class:
DBObject obj = new BasicDBObject(); obj.put( "foo", "bar" );
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
Constructor and Description |
---|
BasicDBObject()
Creates an empty object.
|
BasicDBObject(int size)
Creates an empty object
|
BasicDBObject(Map map)
Creates an object from a map.
|
BasicDBObject(String key,
Object value)
Creates an object with the given key/value
|
Modifier and Type | Method and Description |
---|---|
BasicDBObject |
append(String key,
Object val)
Add a key/value pair to this object
|
Object |
copy()
Creates a new instance which is a copy of this BasicDBObject.
|
boolean |
isPartialObject()
Whether
markAsPartialObject() was ever called only matters if you are going to upsert and do not want to risk losing fields. |
void |
markAsPartialObject()
If this object was retrieved with only some fields (using a field filter) this method will be called to mark it as such.
|
String |
toString()
Returns a JSON serialization of this object
|
containsField, containsKey, equals, get, getBoolean, getBoolean, getDate, getDate, getDouble, getDouble, getInt, getInt, getLong, getLong, getObjectId, getObjectId, getString, getString, hashCode, put, putAll, putAll, removeField, toMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, putIfAbsent, remove, remove, replace, replace, size
finalize, getClass, notify, notifyAll, wait, wait, wait
containsField, containsKey, get, keySet, put, putAll, putAll, removeField, toMap
compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, putIfAbsent, remove, remove, replace, replace, size
public BasicDBObject()
public BasicDBObject(int size)
size
- an estimate of number of fields that will be insertedpublic BasicDBObject(String key, Object value)
key
- key under which to storevalue
- value to storepublic BasicDBObject(Map map)
map
- map to convertpublic boolean isPartialObject()
markAsPartialObject()
was ever called only matters if you are going to upsert and do not want to risk losing fields.isPartialObject
in interface DBObject
public void markAsPartialObject()
markAsPartialObject
in interface DBObject
public String toString()
Returns a JSON serialization of this object
The output will look like: {"a":1, "b":["x","y","z"]}
toString
in class BasicBSONObject
public BasicDBObject append(String key, Object val)
BasicBSONObject
append
in class BasicBSONObject
key
- the field nameval
- the field valuethis
public Object copy()