Class UnmodifiableNavigableSet<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
-
- org.apache.commons.collections4.set.AbstractSetDecorator<E>
-
- org.apache.commons.collections4.set.AbstractSortedSetDecorator<E>
-
- org.apache.commons.collections4.set.AbstractNavigableSetDecorator<E>
-
- org.apache.commons.collections4.set.UnmodifiableNavigableSet<E>
-
- Type Parameters:
E
- the type of the elements in this set
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,NavigableSet<E>
,Set<E>
,SortedSet<E>
,Unmodifiable
public final class UnmodifiableNavigableSet<E> extends AbstractNavigableSetDecorator<E> implements Unmodifiable
Decorates anotherNavigableSet
to ensure it can't be altered.Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 4.1
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(E object)
boolean
addAll(Collection<? extends E> coll)
void
clear()
Iterator<E>
descendingIterator()
NavigableSet<E>
descendingSet()
SortedSet<E>
headSet(E toElement)
NavigableSet<E>
headSet(E toElement, boolean inclusive)
Iterator<E>
iterator()
boolean
remove(Object object)
boolean
removeAll(Collection<?> coll)
boolean
removeIf(Predicate<? super E> filter)
boolean
retainAll(Collection<?> coll)
NavigableSet<E>
subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
SortedSet<E>
subSet(E fromElement, E toElement)
SortedSet<E>
tailSet(E fromElement)
NavigableSet<E>
tailSet(E fromElement, boolean inclusive)
static <E> NavigableSet<E>
unmodifiableNavigableSet(NavigableSet<E> set)
Factory method to create an unmodifiable set.-
Methods inherited from class org.apache.commons.collections4.set.AbstractNavigableSetDecorator
ceiling, floor, higher, lower, pollFirst, pollLast
-
Methods inherited from class org.apache.commons.collections4.set.AbstractSortedSetDecorator
comparator, first, last
-
Methods inherited from class org.apache.commons.collections4.set.AbstractSetDecorator
equals, hashCode
-
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, size, toArray, toArray, toString
-
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
-
Methods inherited from interface java.util.Set
contains, containsAll, equals, hashCode, isEmpty, size, toArray, toArray
-
Methods inherited from interface java.util.SortedSet
comparator, first, last, spliterator
-
-
-
-
Method Detail
-
unmodifiableNavigableSet
public static <E> NavigableSet<E> unmodifiableNavigableSet(NavigableSet<E> set)
Factory method to create an unmodifiable set.- Type Parameters:
E
- the element type- Parameters:
set
- the set to decorate, must not be null- Returns:
- a new unmodifiable
NavigableSet
- Throws:
NullPointerException
- if set is null
-
iterator
public Iterator<E> iterator()
- Specified by:
iterator
in interfaceCollection<E>
- Specified by:
iterator
in interfaceIterable<E>
- Specified by:
iterator
in interfaceNavigableSet<E>
- Specified by:
iterator
in interfaceSet<E>
- Overrides:
iterator
in classAbstractCollectionDecorator<E>
-
add
public boolean add(E object)
- Specified by:
add
in interfaceCollection<E>
- Specified by:
add
in interfaceSet<E>
- Overrides:
add
in classAbstractCollectionDecorator<E>
-
addAll
public boolean addAll(Collection<? extends E> coll)
- Specified by:
addAll
in interfaceCollection<E>
- Specified by:
addAll
in interfaceSet<E>
- Overrides:
addAll
in classAbstractCollectionDecorator<E>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<E>
- Specified by:
clear
in interfaceSet<E>
- Overrides:
clear
in classAbstractCollectionDecorator<E>
-
remove
public boolean remove(Object object)
- Specified by:
remove
in interfaceCollection<E>
- Specified by:
remove
in interfaceSet<E>
- Overrides:
remove
in classAbstractCollectionDecorator<E>
-
removeIf
public boolean removeIf(Predicate<? super E> filter)
- Specified by:
removeIf
in interfaceCollection<E>
- Overrides:
removeIf
in classAbstractCollectionDecorator<E>
- Since:
- 4.4
-
removeAll
public boolean removeAll(Collection<?> coll)
- Specified by:
removeAll
in interfaceCollection<E>
- Specified by:
removeAll
in interfaceSet<E>
- Overrides:
removeAll
in classAbstractCollectionDecorator<E>
-
retainAll
public boolean retainAll(Collection<?> coll)
- Specified by:
retainAll
in interfaceCollection<E>
- Specified by:
retainAll
in interfaceSet<E>
- Overrides:
retainAll
in classAbstractCollectionDecorator<E>
-
subSet
public SortedSet<E> subSet(E fromElement, E toElement)
- Specified by:
subSet
in interfaceNavigableSet<E>
- Specified by:
subSet
in interfaceSortedSet<E>
- Overrides:
subSet
in classAbstractSortedSetDecorator<E>
-
headSet
public SortedSet<E> headSet(E toElement)
- Specified by:
headSet
in interfaceNavigableSet<E>
- Specified by:
headSet
in interfaceSortedSet<E>
- Overrides:
headSet
in classAbstractSortedSetDecorator<E>
-
tailSet
public SortedSet<E> tailSet(E fromElement)
- Specified by:
tailSet
in interfaceNavigableSet<E>
- Specified by:
tailSet
in interfaceSortedSet<E>
- Overrides:
tailSet
in classAbstractSortedSetDecorator<E>
-
descendingSet
public NavigableSet<E> descendingSet()
- Specified by:
descendingSet
in interfaceNavigableSet<E>
- Overrides:
descendingSet
in classAbstractNavigableSetDecorator<E>
-
descendingIterator
public Iterator<E> descendingIterator()
- Specified by:
descendingIterator
in interfaceNavigableSet<E>
- Overrides:
descendingIterator
in classAbstractNavigableSetDecorator<E>
-
subSet
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
- Specified by:
subSet
in interfaceNavigableSet<E>
- Overrides:
subSet
in classAbstractNavigableSetDecorator<E>
-
headSet
public NavigableSet<E> headSet(E toElement, boolean inclusive)
- Specified by:
headSet
in interfaceNavigableSet<E>
- Overrides:
headSet
in classAbstractNavigableSetDecorator<E>
-
tailSet
public NavigableSet<E> tailSet(E fromElement, boolean inclusive)
- Specified by:
tailSet
in interfaceNavigableSet<E>
- Overrides:
tailSet
in classAbstractNavigableSetDecorator<E>
-
-