Package org.infinispan.cache.impl
Class SimpleCacheImpl.EntrySetBase<T extends Map.Entry<K,V>>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<T>
-
- 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 AbstractSet<T> 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)booleanisEmpty()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()Object[]toArray()-
Methods inherited from class java.util.AbstractSet
equals, hashCode
-
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, iterator, toArray, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.infinispan.CacheCollection
localPublisher, localPublisher, 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()
-
remove
public boolean remove(Object o)
-
retainAll
public boolean retainAll(Collection<?> c)
-
removeAll
public boolean removeAll(Collection<?> c)
-
-