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

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

Introduction

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

Usage

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

public class COWNavigableSet<E extends Comparable<E>> extends ForwardingNavigableSet<E> {

    private final AtomicReference<ImmutableSortedSet<E>> m_set;

    public COWNavigableSet() {
        m_set = new AtomicReference<ImmutableSortedSet<E>>(ImmutableSortedSet.<E>of());