Uses of Interface
com.google.common.collect.RangeMap
-
Packages that use RangeMap Package Description com.google.common.collect Collection interfaces and implementations, and other utilities for collections. -
-
Uses of RangeMap in com.google.common.collect
Classes in com.google.common.collect that implement RangeMap Modifier and Type Class Description class
ImmutableRangeMap<K extends java.lang.Comparable<?>,V>
ARangeMap
whose contents will never change, with many other important properties detailed atImmutableCollection
.class
TreeRangeMap<K extends java.lang.Comparable,V>
An implementation ofRangeMap
based on aTreeMap
, supporting all optional operations.Methods in com.google.common.collect that return RangeMap Modifier and Type Method Description RangeMap<K,V>
RangeMap. subRangeMap(Range<K> range)
Returns a view of the part of this range map that intersects withrange
.RangeMap<K,V>
TreeRangeMap. subRangeMap(Range<K> subRange)
Methods in com.google.common.collect with parameters of type RangeMap Modifier and Type Method Description static <K extends java.lang.Comparable<?>,V>
ImmutableRangeMap<K,V>ImmutableRangeMap. copyOf(RangeMap<K,? extends V> rangeMap)
ImmutableRangeMap.Builder<K,V>
ImmutableRangeMap.Builder. putAll(RangeMap<K,? extends V> rangeMap)
Copies all associations from the specified range map into this builder.void
ImmutableRangeMap. putAll(RangeMap<K,? extends V> rangeMap)
Deprecated.Unsupported operation.void
RangeMap. putAll(RangeMap<K,? extends V> rangeMap)
Puts all the associations fromrangeMap
into this range map (optional operation).void
TreeRangeMap. putAll(RangeMap<K,? extends V> rangeMap)
-