Class CouchbaseMap<E>
- java.lang.Object
-
- java.util.AbstractMap<String,E>
-
- com.couchbase.client.java.datastructures.CouchbaseMap<E>
-
- Type Parameters:
E
- the type of values in the map (restricted toJsonObject
.
@Committed public class CouchbaseMap<E> extends AbstractMap<String,E>
A CouchbaseMap is aMap
backed by aCouchbase
document (more specifically aJSON object
). Null keys are NOT permitted, and keys are restricted toString
. Values in a CouchbaseMap are restricted to the types that aJSON objects
can contain. JSON sub-objects and sub-arrays can be represented asJsonObject
andJsonArray
respectively.- Since:
- 2.3.6
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description CouchbaseMap(String id, Collection collection, Class<E> entityType)
CouchbaseMap(String id, Collection collection, Class<E> entityType, MapOptions options)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
protected long
createEmpty()
Set<Map.Entry<String,E>>
entrySet()
E
get(Object key)
E
put(String key, E value)
E
remove(Object key)
int
size()
-
Methods inherited from class java.util.AbstractMap
clone, equals, hashCode, isEmpty, keySet, putAll, toString, values
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
CouchbaseMap
public CouchbaseMap(String id, Collection collection, Class<E> entityType, MapOptions options)
Create a newCouchbaseMap
, backed by the document identified byid
in the given Couchbasebucket
. Note that if the document already exists, its content will be used as initial content for this collection. Otherwise it is created empty.- Parameters:
id
- the id of the Couchbase document to back the map.collection
- theCollection
through which to interact with the document.entityType
- aClass
describing the type of objects used as values in this Map.options
- aMapOptions
to use for all operations on this instance of the map.
-
CouchbaseMap
public CouchbaseMap(String id, Collection collection, Class<E> entityType)
Create a newCouchbaseMap
, backed by the document identified byid
in the given Couchbasebucket
. Note that if the document already exists, its content will be used as initial content for this collection. Otherwise it is created empty.- Parameters:
id
- the id of the Couchbase document to back the map.collection
- theCollection
through which to interact with the document.entityType
- aClass
describing the type of objects used as values in this Map.
-
-
Method Detail
-
clear
public void clear()
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,E>
- Overrides:
containsKey
in classAbstractMap<String,E>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,E>
- Overrides:
containsValue
in classAbstractMap<String,E>
-
size
public int size()
-
createEmpty
protected long createEmpty()
-
-