static <C extends java.lang.Comparable> ContiguousSet<C> |
ContiguousSet.create(Range<C> range,
DiscreteDomain<C> domain) |
Returns a ContiguousSet containing the same values in the given domain
contained by the range.
|
ContiguousSet<C> |
ContiguousSet.headSet(C toElement) |
|
ContiguousSet<C> |
ContiguousSet.headSet(C toElement,
boolean inclusive) |
|
(package private) abstract ContiguousSet<C> |
ContiguousSet.headSetImpl(C toElement,
boolean inclusive) |
|
(package private) ContiguousSet<C> |
EmptyContiguousSet.headSetImpl(C toElement,
boolean inclusive) |
|
(package private) ContiguousSet<C> |
RegularContiguousSet.headSetImpl(C toElement,
boolean inclusive) |
|
abstract ContiguousSet<C> |
ContiguousSet.intersection(ContiguousSet<C> other) |
Returns the set of values that are contained in both this set and the other.
|
ContiguousSet<C> |
EmptyContiguousSet.intersection(ContiguousSet<C> other) |
|
ContiguousSet<C> |
RegularContiguousSet.intersection(ContiguousSet<C> other) |
|
private ContiguousSet<C> |
RegularContiguousSet.intersectionInCurrentDomain(Range<C> other) |
|
ContiguousSet<C> |
ContiguousSet.subSet(C fromElement,
boolean fromInclusive,
C toElement,
boolean toInclusive) |
|
ContiguousSet<C> |
ContiguousSet.subSet(C fromElement,
C toElement) |
|
(package private) abstract ContiguousSet<C> |
ContiguousSet.subSetImpl(C fromElement,
boolean fromInclusive,
C toElement,
boolean toInclusive) |
|
(package private) ContiguousSet<C> |
EmptyContiguousSet.subSetImpl(C fromElement,
boolean fromInclusive,
C toElement,
boolean toInclusive) |
|
(package private) ContiguousSet<C> |
RegularContiguousSet.subSetImpl(C fromElement,
boolean fromInclusive,
C toElement,
boolean toInclusive) |
|
ContiguousSet<C> |
ContiguousSet.tailSet(C fromElement) |
|
ContiguousSet<C> |
ContiguousSet.tailSet(C fromElement,
boolean inclusive) |
|
(package private) abstract ContiguousSet<C> |
ContiguousSet.tailSetImpl(C fromElement,
boolean inclusive) |
|
(package private) ContiguousSet<C> |
EmptyContiguousSet.tailSetImpl(C fromElement,
boolean fromInclusive) |
|
(package private) ContiguousSet<C> |
RegularContiguousSet.tailSetImpl(C fromElement,
boolean inclusive) |
|