SortedBag<E> |
SortedBag.headBag(E toElement) |
Returns a view of the portion of this bag whose elements are
strictly less than toElement.
|
SortedBag<E> |
SortedBag.ViewBag.headBag(E toElement) |
Returns a view of the portion of this bag whose elements are
strictly less than toElement.
|
SortedBag<E> |
SortedBag.subBag(E fromElement,
E toElement) |
Returns a view of the portion of this bag whose elements range
from fromElement, inclusive, to toElement,
exclusive.
|
SortedBag<E> |
SortedBag.ViewBag.subBag(E fromElement,
E toElement) |
Returns a view of the portion of this bag whose elements range
from fromElement, inclusive, to toElement,
exclusive.
|
SortedBag<E> |
SortedBag.tailBag(E fromElement) |
Returns a view of the portion of this bag whose elements are
greater than or equal to fromElement.
|
SortedBag<E> |
SortedBag.ViewBag.tailBag(E fromElement) |
Returns a view of the portion of this bag whose elements are
greater than or equal to fromElement.
|