Uses of Class
com.google.common.collect.DiscreteDomain
-
Packages that use DiscreteDomain Package Description com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. -
-
Uses of DiscreteDomain in com.google.common.collect
Methods in com.google.common.collect that return DiscreteDomain Modifier and Type Method Description static DiscreteDomain<java.math.BigInteger>
DiscreteDomain. bigIntegers()
Returns the discrete domain for values of typeBigInteger
.static DiscreteDomain<java.lang.Integer>
DiscreteDomain. integers()
Returns the discrete domain for values of typeInteger
.static DiscreteDomain<java.lang.Long>
DiscreteDomain. longs()
Returns the discrete domain for values of typeLong
.Methods in com.google.common.collect with parameters of type DiscreteDomain Modifier and Type Method Description ImmutableSortedSet<C>
ImmutableRangeSet. asSet(DiscreteDomain<C> domain)
Returns anImmutableSortedSet
containing the same values in the given domain contained by this range set.Range<C>
Range. canonical(DiscreteDomain<C> domain)
Returns the canonical form of this range in the given domain.static <C extends java.lang.Comparable>
ContiguousSet<C>ContiguousSet. create(Range<C> range, DiscreteDomain<C> domain)
Returns aContiguousSet
containing the same values in the given domain contained by the range.
-