Class CouchbaseMap<E>
- Type Parameters:
E
- the type of values in the map (restricted toJsonObject
.
A CouchbaseMap is a
Map
backed by a Couchbase
document (more specifically a
JSON object
).
Null keys are NOT permitted, and keys are restricted to String
.
Values in a CouchbaseMap are restricted to the types that a JSON objects
can contain. JSON sub-objects and sub-arrays can be represented as JsonObject
and JsonArray
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
ConstructorDescriptionCouchbaseMap
(String id, Collection collection, Class<E> entityType, MapOptions options) -
Method Summary
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 Details
-
CouchbaseMap
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.
-
-
Method Details
-
put
-
get
-
remove
-
clear
public void clear() -
entrySet
-
containsKey
- Specified by:
containsKey
in interfaceMap<String,
E> - Overrides:
containsKey
in classAbstractMap<String,
E>
-
containsValue
- Specified by:
containsValue
in interfaceMap<String,
E> - Overrides:
containsValue
in classAbstractMap<String,
E>
-
size
public int size()
-