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 protectedEntrySetBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontains(Object o)booleancontainsAll(Collection<?> c)booleanisEmpty()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()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:
containsAllin interfaceCollection<T extends Map.Entry<K,V>>- Specified by:
containsAllin interfaceSet<T extends Map.Entry<K,V>>
-
retainAll
public boolean retainAll(Collection<?> c)
-
removeAll
public boolean removeAll(Collection<?> c)
-
-