Class TreeRangeSet<C extends Comparable<?>>
- All Implemented Interfaces:
RangeSet<C>
- Since:
- 14.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.Adds the specified range to thisRangeSet
(optional operation).void
Deprecated.Adds all of the ranges from the specified range set to this range set (optional operation).asRanges()
Deprecated.Returns a view of the disconnected ranges that make up this range set.void
clear()
Deprecated.Removes all ranges from thisRangeSet
(optional operation).Deprecated.Returns a view of the complement of thisRangeSet
.boolean
Deprecated.Determines whether any of this range set's member ranges containsvalue
.static <C extends Comparable<?>>
TreeRangeSet<C> create()
Deprecated.Creates an emptyTreeRangeSet
instance.static <C extends Comparable<?>>
TreeRangeSet<C> Deprecated.Returns aTreeRangeSet
initialized with the ranges in the specified range set.boolean
Deprecated.Returnstrue
if there exists a member range in this range set which encloses the specified range.boolean
enclosesAll
(RangeSet<C> other) Deprecated.Returnstrue
if for each member range inother
there exists a member range in this range set which encloses it.boolean
Deprecated.Returnstrue
ifobj
is anotherRangeSet
that contains the same ranges according toRange.equals(Object)
.final int
hashCode()
Deprecated.ReturnsasRanges().hashCode()
.boolean
isEmpty()
Deprecated.Returnstrue
if this range set contains no ranges.rangeContaining
(C value) Deprecated.Returns the unique range from this range set that containsvalue
, ornull
if this range set does not containvalue
.void
Deprecated.Removes the specified range from thisRangeSet
(optional operation).void
Deprecated.Removes all of the ranges from the specified range set from this range set (optional operation).span()
Deprecated.Returns the minimal range which encloses all ranges in this range set.subRangeSet
(Range<C> view) Deprecated.Returns a view of the intersection of thisRangeSet
with the specified range.final String
toString()
Deprecated.Returns a readable string representation of this range set.
-
Method Details
-
create
Deprecated.Creates an emptyTreeRangeSet
instance. -
create
Deprecated.Returns aTreeRangeSet
initialized with the ranges in the specified range set. -
asRanges
Deprecated.Description copied from interface:RangeSet
Returns a view of the disconnected ranges that make up this range set. The returned set may be empty. The iterators returned by itsIterable.iterator()
method return the ranges in increasing order of lower bound (equivalently, of upper bound). -
rangeContaining
Deprecated.Description copied from interface:RangeSet
Returns the unique range from this range set that containsvalue
, ornull
if this range set does not containvalue
.- Specified by:
rangeContaining
in interfaceRangeSet<C extends Comparable<?>>
-
encloses
Deprecated.Description copied from interface:RangeSet
Returnstrue
if there exists a member range in this range set which encloses the specified range.- Specified by:
encloses
in interfaceRangeSet<C extends Comparable<?>>
-
span
Deprecated.Description copied from interface:RangeSet
Returns the minimal range which encloses all ranges in this range set. -
add
Deprecated.Description copied from interface:RangeSet
Adds the specified range to thisRangeSet
(optional operation). That is, for equal range sets a and b, the result ofa.add(range)
is thata
will be the minimal range set for which botha.enclosesAll(b)
anda.encloses(range)
.Note that
range
will be coalesced with any ranges in the range set that are connected with it. Moreover, ifrange
is empty, this is a no-op.- Specified by:
add
in interfaceRangeSet<C extends Comparable<?>>
-
remove
Deprecated.Description copied from interface:RangeSet
Removes the specified range from thisRangeSet
(optional operation). After this operation, ifrange.contains(c)
,this.contains(c)
will returnfalse
.If
range
is empty, this is a no-op.- Specified by:
remove
in interfaceRangeSet<C extends Comparable<?>>
-
complement
Deprecated.Description copied from interface:RangeSet
Returns a view of the complement of thisRangeSet
.The returned view supports the
RangeSet.add(com.google.common.collect.Range<C>)
operation if thisRangeSet
supportsRangeSet.remove(com.google.common.collect.Range<C>)
, and vice versa. -
subRangeSet
Deprecated.Description copied from interface:RangeSet
Returns a view of the intersection of thisRangeSet
with the specified range.The returned view supports all optional operations supported by this
RangeSet
, with the caveat that anIllegalArgumentException
is thrown on an attempt to add any range not enclosed byview
. -
contains
Deprecated.Description copied from interface:RangeSet
Determines whether any of this range set's member ranges containsvalue
.- Specified by:
contains
in interfaceRangeSet<C extends Comparable>
-
isEmpty
public boolean isEmpty()Deprecated.Description copied from interface:RangeSet
Returnstrue
if this range set contains no ranges.- Specified by:
isEmpty
in interfaceRangeSet<C extends Comparable>
-
clear
public void clear()Deprecated.Description copied from interface:RangeSet
Removes all ranges from thisRangeSet
(optional operation). After this operation,this.contains(c)
will return false for allc
.This is equivalent to
remove(Range.all())
.- Specified by:
clear
in interfaceRangeSet<C extends Comparable>
-
enclosesAll
Deprecated.Description copied from interface:RangeSet
Returnstrue
if for each member range inother
there exists a member range in this range set which encloses it. It follows thatthis.contains(value)
wheneverother.contains(value)
. Returnstrue
ifother
is empty.This is equivalent to checking if this range set
RangeSet.encloses(com.google.common.collect.Range<C>)
each of the ranges inother
.- Specified by:
enclosesAll
in interfaceRangeSet<C extends Comparable>
-
addAll
Deprecated.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 andother
.This is equivalent to calling
RangeSet.add(com.google.common.collect.Range<C>)
on each of the ranges inother
in turn.- Specified by:
addAll
in interfaceRangeSet<C extends Comparable>
-
removeAll
Deprecated.Description copied from interface:RangeSet
Removes all of the ranges from the specified range set from this range set (optional operation). After this operation, ifother.contains(c)
,this.contains(c)
will returnfalse
.This is equivalent to calling
RangeSet.remove(com.google.common.collect.Range<C>)
on each of the ranges inother
in turn.- Specified by:
removeAll
in interfaceRangeSet<C extends Comparable>
-
equals
Deprecated.Description copied from interface:RangeSet
Returnstrue
ifobj
is anotherRangeSet
that contains the same ranges according toRange.equals(Object)
.- Specified by:
equals
in interfaceRangeSet<C extends Comparable>
- Overrides:
equals
in classObject
-
hashCode
public final int hashCode()Deprecated.Description copied from interface:RangeSet
ReturnsasRanges().hashCode()
.- Specified by:
hashCode
in interfaceRangeSet<C extends Comparable>
- Overrides:
hashCode
in classObject
-
toString
Deprecated.Description copied from interface:RangeSet
Returns a readable string representation of this range set. For example, if thisRangeSet
consisted ofRange.closed(1, 3)
andRange.greaterThan(4)
, this might return" [1‥3](4‥+∞)
"}.- Specified by:
toString
in interfaceRangeSet<C extends Comparable>
- Overrides:
toString
in classObject
-