Example usage for com.google.common.collect ForwardingNavigableMap subclass-usage

List of usage examples for com.google.common.collect ForwardingNavigableMap subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect ForwardingNavigableMap subclass-usage.

Usage

From source file com.palantir.atlasdb.keyvalue.partition.CycleMap.java

public class CycleMap<K, V> extends ForwardingNavigableMap<K, V> {
    private final NavigableMap<K, V> backingMap;

    private CycleMap(NavigableMap<K, V> backingMap) {
        this.backingMap = backingMap;
    }

From source file com.palantir.atlasdb.keyvalue.partition.util.CycleMap.java

public class CycleMap<K, V> extends ForwardingNavigableMap<K, V> {
    private final NavigableMap<K, V> backingMap;

    private CycleMap(NavigableMap<K, V> backingMap) {
        this.backingMap = backingMap;
    }

From source file com.afewmoreamps.util.COWSortedMap.java

/**
 * Key set, value set, and entry set are all immutable as are their iterators.
 * Otherwise behaves as you would expect.
 */
public class COWSortedMap<K extends Comparable<K>, V> extends ForwardingNavigableMap<K, V>
        implements NavigableMap<K, V> {

From source file org.voltcore.utils.COWSortedMap.java

/**
 * Key set, value set, and entry set are all immutable as are their iterators.
 * Otherwise behaves as you would expect.
 */
public class COWSortedMap<K extends Comparable<K>, V> extends ForwardingNavigableMap<K, V>
        implements NavigableMap<K, V> {