Class Sets.SetView<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.docx4j.com.google.common.collect.Sets.SetView<E>
- All Implemented Interfaces:
java.lang.Iterable<E>,java.util.Collection<E>,java.util.Set<E>
- Enclosing class:
- Sets
public abstract static class Sets.SetView<E>
extends java.util.AbstractSet<E>
An unmodifiable view of a set which may be backed by other sets; this view will change as the
backing sets do. Contains methods to copy the data into a new set which will then remain
stable. There is usually no reason to retain a reference of type
SetView; typically,
you either use it as a plain Set, or immediately invoke immutableCopy() or
copyInto(S) and forget the SetView itself.- Since:
- 2.0
-
Method Summary
Modifier and Type Method Description booleanadd(E e)Deprecated.Unsupported operation.booleanaddAll(java.util.Collection<? extends E> newElements)Deprecated.Unsupported operation.voidclear()Deprecated.Unsupported operation.<S extends java.util.Set<E>>
ScopyInto(S set)Copies the current contents of this set view into an existing set.ImmutableSet<E>immutableCopy()Returns an immutable copy of the current contents of this set view.abstract UnmodifiableIterator<E>iterator()Scope the return type toUnmodifiableIteratorto ensure this is an unmodifiable view.booleanremove(java.lang.Object object)Deprecated.Unsupported operation.booleanremoveAll(java.util.Collection<?> oldElements)Deprecated.Unsupported operation.booleanremoveIf(java.util.function.Predicate<? super E> filter)Deprecated.Unsupported operation.booleanretainAll(java.util.Collection<?> elementsToKeep)Deprecated.Unsupported operation.Methods inherited from class java.util.AbstractCollection
contains, containsAll, isEmpty, size, toArray, toArray, toString
-
Method Details
-
immutableCopy
Returns an immutable copy of the current contents of this set view. Does not support null elements.Warning: this may have unexpected results if a backing set of this view uses a nonstandard notion of equivalence, for example if it is a
TreeSetusing a comparator that is inconsistent withObject.equals(Object). -
copyInto
Copies the current contents of this set view into an existing set. This method has equivalent behavior toset.addAll(this), assuming that all the sets involved are based on the same notion of equivalence.- Returns:
- a reference to
set, for convenience
-
add
Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
remove
@CanIgnoreReturnValue @Deprecated public final boolean remove(java.lang.Object object)Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
addAll
@CanIgnoreReturnValue @Deprecated public final boolean addAll(java.util.Collection<? extends E> newElements)Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
removeAll
@CanIgnoreReturnValue @Deprecated public final boolean removeAll(java.util.Collection<?> oldElements)Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
removeIf
@CanIgnoreReturnValue @Deprecated public final boolean removeIf(java.util.function.Predicate<? super E> filter)Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified.- Throws:
java.lang.UnsupportedOperationException- always
-
retainAll
@CanIgnoreReturnValue @Deprecated public final boolean retainAll(java.util.Collection<?> elementsToKeep)Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
clear
@Deprecated public final void clear()Deprecated.Unsupported operation.Guaranteed to throw an exception and leave the collection unmodified. -
iterator
Scope the return type toUnmodifiableIteratorto ensure this is an unmodifiable view.
-