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>
@Committed public class CouchbaseArraySet<T> extends AbstractSet<T>
A CouchbaseArraySet is aSet
backed by aCouchbase
document (more specifically aJSON array
). Note that a CouchbaseArraySet is restricted to primitive types (the types that aJSON array
can contain, exceptJsonObject
andJsonArray
). null entries are supported.- Since:
- 2.3.6
-
-
Constructor Summary
Constructors Constructor Description CouchbaseArraySet(String id, Collection collection, Class<T> entityType)
Create a newCouchbaseArraySet
, backed by the document identified byid
in the given Couchbasebucket
.CouchbaseArraySet(String id, Collection collection, Class<T> entityType, ArraySetOptions options)
Create a newCouchbaseArraySet
, backed by the document identified byid
in the given Couchbasebucket
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(T t)
void
clear()
boolean
contains(Object t)
protected void
enforcePrimitive(Object t)
Verify that the type of object t is compatible with CouchbaseArraySet storage.boolean
isEmpty()
Iterator<T>
iterator()
boolean
remove(Object t)
protected boolean
safeEquals(Object expected, Object tested)
int
size()
-
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, toArray
-
Methods inherited from interface java.util.Set
addAll, containsAll, retainAll, spliterator, toArray, toArray
-
-
-
-
Constructor Detail
-
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 Classdescribing the type of objects in this Set. options
- aArraySetOptions
to use for all operations on this instance of the list.
-
CouchbaseArraySet
public CouchbaseArraySet(String id, Collection collection, Class<T> entityType)
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 Classdescribing the type of objects in this Set.
-
-
Method Detail
-
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
public boolean contains(Object t)
- Specified by:
contains
in interfaceCollection<T>
- Specified by:
contains
in interfaceSet<T>
- Overrides:
contains
in classAbstractCollection<T>
-
add
public boolean add(T t)
- Specified by:
add
in interfaceCollection<T>
- Specified by:
add
in interfaceSet<T>
- Overrides:
add
in classAbstractCollection<T>
-
remove
public boolean remove(Object t)
- 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>
-
enforcePrimitive
protected void enforcePrimitive(Object t) throws ClassCastException
Verify that the type of object t is compatible with CouchbaseArraySet storage.- Parameters:
t
- the object to check.- Throws:
ClassCastException
- if the object is incompatible.
-
-