Class CouchbaseArraySet<T>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<T>
com.couchbase.client.java.datastructures.CouchbaseArraySet<T>
- Type Parameters:
T
- the type of values in the set.
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,Set<T>
A CouchbaseArraySet is a
Set
backed by a Couchbase
document (more
specifically a JSON array
).
Note that a CouchbaseArraySet is restricted to primitive types (the types that a JSON array
can contain, except JsonObject
and JsonArray
). null entries are supported.- Since:
- 2.3.6
-
Constructor Summary
ConstructorDescriptionCouchbaseArraySet
(String id, Collection collection, Class<T> entityType, ArraySetOptions options) Create a newCouchbaseArraySet
, backed by the document identified byid
in the given Couchbasebucket
. -
Method Summary
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
Methods inherited from interface java.util.Set
addAll, containsAll, retainAll, spliterator, toArray, toArray
-
Constructor Details
-
CouchbaseArraySet
public CouchbaseArraySet(String id, Collection collection, Class<T> entityType, ArraySetOptions options) Create a newCouchbaseArraySet
, 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 set.collection
- theCollection
through which to interact with the document.entityType
- a Class describing the type of objects in this Set.options
- aArraySetOptions
to use for all operations on this instance of the list.
-
-
Method Details
-
size
public int size()- Specified by:
size
in interfaceCollection<T>
- Specified by:
size
in interfaceSet<T>
- Specified by:
size
in classAbstractCollection<T>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<T>
- Specified by:
isEmpty
in interfaceSet<T>
- Overrides:
isEmpty
in classAbstractCollection<T>
-
contains
- Specified by:
contains
in interfaceCollection<T>
- Specified by:
contains
in interfaceSet<T>
- Overrides:
contains
in classAbstractCollection<T>
-
iterator
-
add
- Specified by:
add
in interfaceCollection<T>
- Specified by:
add
in interfaceSet<T>
- Overrides:
add
in classAbstractCollection<T>
-
remove
- Specified by:
remove
in interfaceCollection<T>
- Specified by:
remove
in interfaceSet<T>
- Overrides:
remove
in classAbstractCollection<T>
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<T>
- Specified by:
clear
in interfaceSet<T>
- Overrides:
clear
in classAbstractCollection<T>
-