ImmutableNavigableSet<E> |
ImmutableNavigableSet.descendingSet() |
Returns a reverse order view of the elements contained in this immutable set.
|
ImmutableNavigableSet<E> |
ImmutableTreeSet.descendingSet() |
Returns a reverse order view of the elements contained in this immutable set.
|
ImmutableNavigableSet<E> |
ImmutableNavigableSet.headSet(E toElement,
boolean inclusive) |
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if inclusive is
true) toElement .
|
ImmutableNavigableSet<E> |
ImmutableTreeSet.headSet(E toElement,
boolean inclusive) |
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if inclusive is
true) toElement .
|
ImmutableNavigableSet<E> |
ImmutableNavigableSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive) |
Returns a view of the portion of this immutable set whose elements range from fromElement to toElement .
|
ImmutableNavigableSet<E> |
ImmutableTreeSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive) |
Returns a view of the portion of this immutable set whose elements range from fromElement to toElement .
|
ImmutableNavigableSet<E> |
ImmutableNavigableSet.tailSet(E fromElement,
boolean inclusive) |
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if inclusive is
true) fromElement .
|
ImmutableNavigableSet<E> |
ImmutableTreeSet.tailSet(E fromElement,
boolean inclusive) |
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if inclusive is
true) fromElement .
|