Constructor and Description |
---|
AggregationMethodSortedWrapperSortedSet(SortedSet<Object> sorted) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(Object o) |
boolean |
addAll(Collection<?> c) |
void |
clear() |
Comparator<? super Object> |
comparator() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
Object |
first() |
void |
forEach(Consumer<? super Object> action) |
SortedSet<Object> |
headSet(Object toElement) |
boolean |
isEmpty() |
Iterator<Object> |
iterator() |
Object |
last() |
Stream<Object> |
parallelStream() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
removeIf(Predicate<? super Object> filter) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Spliterator<Object> |
spliterator() |
Stream<Object> |
stream() |
SortedSet<Object> |
subSet(Object fromElement,
Object toElement) |
SortedSet<Object> |
tailSet(Object fromElement) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
public Comparator<? super Object> comparator()
comparator
in interface SortedSet<Object>
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(Object o)
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<Object>
containsAll
in interface Set<Object>
public boolean addAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public boolean removeAll(Collection<?> c)
public void clear()
public Spliterator<Object> spliterator()
spliterator
in interface Iterable<Object>
spliterator
in interface Collection<Object>
spliterator
in interface Set<Object>
spliterator
in interface SortedSet<Object>
public boolean removeIf(Predicate<? super Object> filter)
removeIf
in interface Collection<Object>
public Stream<Object> stream()
stream
in interface Collection<Object>
public Stream<Object> parallelStream()
parallelStream
in interface Collection<Object>
Copyright © 2005–2021. All rights reserved.