Package org.infinispan.cache.impl
Class SimpleCacheImpl.EntrySetBase<T extends Map.Entry<K,V>>
- java.lang.Object
-
- org.infinispan.cache.impl.SimpleCacheImpl.EntrySetBase<T>
-
- All Implemented Interfaces:
Iterable<T>
,Collection<T>
,Set<T>
,CacheCollection<T>
,CacheSet<T>
,org.infinispan.commons.util.CloseableIteratorCollection<T>
,org.infinispan.commons.util.CloseableIteratorSet<T>
- Direct Known Subclasses:
SimpleCacheImpl.CacheEntrySet
,SimpleCacheImpl.EntrySet
- Enclosing class:
- SimpleCacheImpl<K,V>
protected abstract class SimpleCacheImpl.EntrySetBase<T extends Map.Entry<K,V>> extends Object implements CacheSet<T>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
EntrySetBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection<?> c)
boolean
isEmpty()
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
int
size()
Object[]
toArray()
<U> U[]
toArray(U[] a)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.infinispan.CacheCollection
parallelStream, stream
-
Methods inherited from interface org.infinispan.commons.util.CloseableIteratorCollection
iterator, spliterator
-
Methods inherited from interface java.util.Collection
removeIf, toArray
-
-
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(Object o)
-
toArray
public Object[] toArray()
-
toArray
public <U> U[] toArray(U[] a)
-
remove
public boolean remove(Object o)
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll
in interfaceCollection<T extends Map.Entry<K,V>>
- Specified by:
containsAll
in interfaceSet<T extends Map.Entry<K,V>>
-
retainAll
public boolean retainAll(Collection<?> c)
-
removeAll
public boolean removeAll(Collection<?> c)
-
-