Class PredicatedNavigableSet<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.collection.PredicatedCollection<E>
org.apache.commons.collections4.set.PredicatedSet<E>
org.apache.commons.collections4.set.PredicatedSortedSet<E>
org.apache.commons.collections4.set.PredicatedNavigableSet<E>
- Type Parameters:
E- the type of the elements in this set
- All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, NavigableSet<E>, SequencedCollection<E>, SequencedSet<E>, Set<E>, SortedSet<E>
Decorates another
NavigableSet to validate that all additions
match a specified predicate.
This set exists to provide validation for the decorated set. It is normally created to decorate an empty set. If an object cannot be added to the set, an IllegalArgumentException is thrown.
One usage would be to ensure that no null entries are added to the set.
NavigableSet set =
PredicatedSortedSet.predicatedNavigableSet(new TreeSet(),
NotNullPredicate.notNullPredicate());
- Since:
- 4.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class PredicatedCollection
PredicatedCollection.Builder<E> -
Field Summary
Fields inherited from class PredicatedCollection
predicate -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedPredicatedNavigableSet(NavigableSet<E> set, Predicate<? super E> predicate) Constructor that wraps (not copies). -
Method Summary
Modifier and TypeMethodDescriptionprotected NavigableSet<E> Gets the navigable set being decorated.pollLast()static <E> PredicatedNavigableSet<E> predicatedNavigableSet(NavigableSet<E> set, Predicate<? super E> predicate) Factory method to create a predicated (validating) navigable set.Methods inherited from class PredicatedSortedSet
comparator, first, headSet, last, predicatedSortedSet, subSet, tailSetMethods inherited from class PredicatedSet
equals, hashCode, predicatedSetMethods inherited from class PredicatedCollection
add, addAll, builder, notNullBuilder, predicatedCollection, validateMethods inherited from class AbstractCollectionDecorator
clear, contains, containsAll, isEmpty, iterator, remove, removeAll, removeIf, retainAll, setCollection, size, toArray, toArray, toStringMethods inherited from interface Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface NavigableSet
headSet, iterator, removeFirst, removeLast, reversed, subSet, tailSetMethods inherited from interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface SortedSet
addFirst, addLast, comparator, first, getFirst, getLast, last, spliterator
-
Constructor Details
-
Method Details
-
decorated
Gets the navigable set being decorated.- Overrides:
decoratedin classPredicatedSortedSet<E>- Returns:
- the decorated navigable set
-
lower
-
floor
-
ceiling
-
higher
-
pollFirst
- Specified by:
pollFirstin interfaceNavigableSet<E>
-
pollLast
- Specified by:
pollLastin interfaceNavigableSet<E>
-
descendingSet
- Specified by:
descendingSetin interfaceNavigableSet<E>
-
descendingIterator
- Specified by:
descendingIteratorin interfaceNavigableSet<E>
-
subSet
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) - Specified by:
subSetin interfaceNavigableSet<E>
-
headSet
- Specified by:
headSetin interfaceNavigableSet<E>
-
tailSet
- Specified by:
tailSetin interfaceNavigableSet<E>