Class AbstractDualBidiMap.Values<V>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.View<java.lang.Object,V,V>
-
- org.apache.openjpa.lib.util.collections.AbstractDualBidiMap.Values<V>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<V>
,java.util.Collection<V>
,java.util.Set<V>
- Enclosing class:
- AbstractDualBidiMap<K,V>
protected static class AbstractDualBidiMap.Values<V> extends AbstractDualBidiMap.View<java.lang.Object,V,V> implements java.util.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 protected
Values(AbstractDualBidiMap<?,V> parent)
Constructs a new view of the BidiMap.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(java.lang.Object value)
java.util.Iterator<V>
iterator()
boolean
remove(java.lang.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
-
-
-
-
Constructor Detail
-
Values
protected Values(AbstractDualBidiMap<?,V> parent)
Constructs a new view of the BidiMap.- Parameters:
parent
- the parent BidiMap
-
-
Method Detail
-
iterator
public java.util.Iterator<V> iterator()
-
contains
public boolean contains(java.lang.Object value)
- Specified by:
contains
in interfacejava.util.Collection<V>
- Specified by:
contains
in interfacejava.util.Set<V>
- Overrides:
contains
in classAbstractCollectionDecorator<V>
-
remove
public boolean remove(java.lang.Object value)
- Specified by:
remove
in interfacejava.util.Collection<V>
- Specified by:
remove
in interfacejava.util.Set<V>
- Overrides:
remove
in classAbstractCollectionDecorator<V>
-
-