Class ImmutableRangeSet<C extends Comparable>

    • Method Detail

      • encloses

        public boolean encloses​(Range<C> otherRange)
        Description copied from interface: RangeSet
        Returns true if there exists a member range in this range set which encloses the specified range.
        Specified by:
        encloses in interface RangeSet<C extends Comparable>
      • rangeContaining

        public Range<C> rangeContaining​(C value)
        Description copied from interface: RangeSet
        Returns the unique range from this range set that contains value, or null if this range set does not contain value.
        Specified by:
        rangeContaining in interface RangeSet<C extends Comparable>
      • isEmpty

        public boolean isEmpty()
        Description copied from interface: RangeSet
        Returns true if this range set contains no ranges.
        Specified by:
        isEmpty in interface RangeSet<C extends Comparable>
      • add

        public void add​(Range<C> range)
        Description copied from interface: RangeSet
        Adds the specified range to this RangeSet (optional operation). That is, for equal range sets a and b, the result of a.add(range) is that a will be the minimal range set for which both a.enclosesAll(b) and a.encloses(range).

        Note that range will be coalesced with any ranges in the range set that are connected with it. Moreover, if range is empty, this is a no-op.

        Specified by:
        add in interface RangeSet<C extends Comparable>
      • addAll

        public void addAll​(RangeSet<C> other)
        Description copied from interface: RangeSet
        Adds all of the ranges from the specified range set to this range set (optional operation). After this operation, this range set is the minimal range set that encloses both the original range set and other.

        This is equivalent to calling RangeSet.add(com.google.common.collect.Range<C>) on each of the ranges in other in turn.

        Specified by:
        addAll in interface RangeSet<C extends Comparable>
      • remove

        public void remove​(Range<C> range)
        Description copied from interface: RangeSet
        Removes the specified range from this RangeSet (optional operation). After this operation, if range.contains(c), this.contains(c) will return false.

        If range is empty, this is a no-op.

        Specified by:
        remove in interface RangeSet<C extends Comparable>
      • asSet

        public ImmutableSortedSet<C> asSet​(DiscreteDomain<C> domain)
        Returns an ImmutableSortedSet containing the same values in the given domain contained by this range set.

        Note: a.asSet(d).equals(b.asSet(d)) does not imply a.equals(b)! For example, a and b could be [2..4] and (1..5), or the empty ranges [3..3) and [4..4).

        Warning: Be extremely careful what you do with the asSet view of a large range set (such as ImmutableRangeSet.of(Range.greaterThan(0))). Certain operations on such a set can be performed efficiently, but others (such as Set.hashCode() or Collections.frequency(java.util.Collection<?>, java.lang.Object)) can cause major performance problems.

        The returned set's Object.toString() method returns a short-hand form of the set's contents, such as "[1..100]"}.

        Throws:
        IllegalArgumentException - if neither this range nor the domain has a lower bound, or if neither has an upper bound
      • contains

        public boolean contains​(C value)
        Description copied from interface: RangeSet
        Determines whether any of this range set's member ranges contains value.
        Specified by:
        contains in interface RangeSet<C extends Comparable>
      • clear

        public void clear()
        Description copied from interface: RangeSet
        Removes all ranges from this RangeSet (optional operation). After this operation, this.contains(c) will return false for all c.

        This is equivalent to remove(Range.all()).

        Specified by:
        clear in interface RangeSet<C extends Comparable>
      • toString

        public final String toString()
        Description copied from interface: RangeSet
        Returns a readable string representation of this range set. For example, if this RangeSet consisted of Range.closed(1, 3) and Range.greaterThan(4), this might return " [1‥3](4‥+∞)"}.
        Specified by:
        toString in interface RangeSet<C extends Comparable>
        Overrides:
        toString in class Object