| Package | Description |
|---|---|
| javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
| Modifier and Type | Method and Description |
|---|---|
FastSortedSet<E> |
FastSortedSet.atomic() |
FastSortedSet<Map.Entry<K,V>> |
FastSortedMap.entrySet() |
FastSortedSet<E> |
FastSortedSet.headSet(E toElement)
Returns a view of the portion of this set whose elements are strictly less than toElement.
|
FastSortedSet<K> |
FastSortedMap.keySet() |
static <E> FastSortedSet<E> |
FastSortedSet.of(Collection<? extends E> that)
Returns a new sorted set holding the same elements as the specified
collection (convenience method).
|
static <E> FastSortedSet<E> |
FastSortedSet.of(E... elements)
Returns a new sorted set holding the specified elements
(convenience method).
|
FastSortedSet<E> |
FastSortedSet.shared() |
FastSortedSet<E> |
FastSortedSet.subSet(E fromElement,
E toElement)
Returns a view of the portion of this set whose elements range from fromElement, inclusive, to toElement, exclusive.
|
FastSortedSet<E> |
FastSortedSet.tailSet(E fromElement)
Returns a view of the portion of this set whose elements are greater than or equal to fromElement.
|
FastSortedSet<E> |
FastSortedSet.unmodifiable() |
Copyright © 2017. All rights reserved.