| Package | Description |
|---|---|
| com.google.common.collect |
This package contains generic collection interfaces and implementations, and other utilities for working with collections.
|
| Modifier and Type | Method and Description |
|---|---|
static <C extends Comparable |
ContiguousSet.create(Range
Returns a
ContiguousSet containing the same values in the given domain
contained by the range.
|
ContiguousSet |
ContiguousSet.headSet(C toElement)
|
ContiguousSet |
ContiguousSet.headSet(C toElement, boolean inclusive)
|
abstract ContiguousSet |
ContiguousSet.intersection(ContiguousSet
Returns the set of values that are contained in both this set and the other.
|
ContiguousSet |
ContiguousSet.subSet(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive)
|
ContiguousSet |
ContiguousSet.subSet(C fromElement, C toElement)
|
ContiguousSet |
ContiguousSet.tailSet(C fromElement)
|
ContiguousSet |
ContiguousSet.tailSet(C fromElement, boolean inclusive)
|
| Modifier and Type | Method and Description |
|---|---|
abstract ContiguousSet |
ContiguousSet.intersection(ContiguousSet
Returns the set of values that are contained in both this set and the other.
|