Package | Description |
---|---|
javolution.util |
High-performance collection classes with
worst case execution time behavior documented. |
Modifier and Type | Method and Description |
---|---|
FastSortedSet<E> |
FastSortedSet.addAll(E... elements) |
FastSortedSet<E> |
FastSortedSet.addAll(FastCollection<? extends E> that) |
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() |
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 © 2005-2013 Javolution. All Rights Reserved.