Class UnmodifiableEntrySet<K,V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractSetDecorator<Map.Entry<K,V>>
-
- org.apache.openjpa.lib.util.collections.UnmodifiableEntrySet<K,V>
-
- Type Parameters:
K- the type of the keys in the mapV- the type of the values in the map
- All Implemented Interfaces:
Serializable,Iterable<Map.Entry<K,V>>,Collection<Map.Entry<K,V>>,Set<Map.Entry<K,V>>,Unmodifiable
public final class UnmodifiableEntrySet<K,V> extends AbstractSetDecorator<Map.Entry<K,V>> implements Unmodifiable
Decorates a map entrySetto ensure it can't be altered.Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(Map.Entry<K,V> object)booleanaddAll(Collection<? extends Map.Entry<K,V>> coll)voidclear()Iterator<Map.Entry<K,V>>iterator()booleanremove(Object object)booleanremoveAll(Collection<?> coll)booleanremoveIf(Predicate<? super Map.Entry<K,V>> filter)booleanretainAll(Collection<?> coll)Object[]toArray()<T> T[]toArray(T[] array)static <K,V>
Set<Map.Entry<K,V>>unmodifiableEntrySet(Set<Map.Entry<K,V>> set)Factory method to create an unmodifiable set of Map Entry objects.-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractSetDecorator
decorated, equals, hashCode
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Methods inherited from interface java.util.Set
contains, containsAll, isEmpty, size, spliterator
-
-
-
-
Method Detail
-
unmodifiableEntrySet
public static <K,V> Set<Map.Entry<K,V>> unmodifiableEntrySet(Set<Map.Entry<K,V>> set)
Factory method to create an unmodifiable set of Map Entry objects.- Type Parameters:
K- the key typeV- the value type- Parameters:
set- the set to decorate, must not be null- Returns:
- a new unmodifiable entry set
- Throws:
NullPointerException- if set is null- Since:
- 4.0
-
addAll
public boolean addAll(Collection<? extends Map.Entry<K,V>> coll)
-
clear
public void clear()
-
remove
public boolean remove(Object object)
-
removeIf
public boolean removeIf(Predicate<? super Map.Entry<K,V>> filter)
- Specified by:
removeIfin interfaceCollection<K>- Overrides:
removeIfin classAbstractCollectionDecorator<Map.Entry<K,V>>- Since:
- 4.4
-
removeAll
public boolean removeAll(Collection<?> coll)
-
retainAll
public boolean retainAll(Collection<?> coll)
-
toArray
public Object[] toArray()
-
-