Example usage for com.google.common.collect ImmutableRangeMap copyOf

List of usage examples for com.google.common.collect ImmutableRangeMap copyOf

Introduction

In this page you can find the example usage for com.google.common.collect ImmutableRangeMap copyOf.

Prototype

@SuppressWarnings("unchecked")
    public static <K extends Comparable<?>, V> ImmutableRangeMap<K, V> copyOf(RangeMap<K, ? extends V> rangeMap) 

Source Link

Usage

From source file:google.registry.monitoring.metrics.MutableDistribution.java

@Override
public ImmutableRangeMap<Double, Long> intervalCounts() {
    return ImmutableRangeMap.copyOf(intervalCounts);
}