java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.jgrapht.util.UnmodifiableUnionSet<E>
- Type Parameters:
E- the element type
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,Set<E>
An unmodifiable live view of the union of two sets.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate classprivate class -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleaniterator()private UnmodifiableUnionSet<E>.SetSizeOrderingintsize()Since the view is live, this operation is no longer a constant time operation.Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAllMethods inherited from class java.util.AbstractCollection
add, addAll, clear, containsAll, isEmpty, remove, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
first
-
second
-
-
Constructor Details
-
UnmodifiableUnionSet
Constructs a new set.- Parameters:
first- the first setsecond- the second set
-
-
Method Details
-
iterator
-
size
public int size()Since the view is live, this operation is no longer a constant time operation.- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceSet<E>- Specified by:
sizein classAbstractCollection<E>
-
contains
- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceSet<E>- Overrides:
containsin classAbstractCollection<E>
-
orderSetsBySize
-