Class AbstractDualBidiMap.Values<V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.View<Object,V,V>
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.Values<V>
-
- All Implemented Interfaces:
Serializable,Iterable<V>,Collection<V>,Set<V>
- Enclosing class:
- AbstractDualBidiMap<K,V>
protected static class AbstractDualBidiMap.Values<V> extends AbstractDualBidiMap.View<Object,V,V> implements Set<V>
Inner class Values.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.View
parent
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedValues(AbstractDualBidiMap<?,V> parent)Constructs a new view of the BidiMap.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(Object value)Iterator<V>iterator()booleanremove(Object value)-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.View
clear, equals, hashCode, removeAll, removeIf, retainAll
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
add, addAll, containsAll, decorated, isEmpty, setCollection, size, 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
-
-
-
-
Constructor Detail
-
Values
protected Values(AbstractDualBidiMap<?,V> parent)
Constructs a new view of the BidiMap.- Parameters:
parent- the parent BidiMap
-
-
Method Detail
-
contains
public boolean contains(Object value)
- Specified by:
containsin interfaceCollection<V>- Specified by:
containsin interfaceSet<V>- Overrides:
containsin classAbstractCollectionDecorator<V>
-
remove
public boolean remove(Object value)
- Specified by:
removein interfaceCollection<V>- Specified by:
removein interfaceSet<V>- Overrides:
removein classAbstractCollectionDecorator<V>
-
-