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

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

Introduction

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

Usage

From source file suneido.util.UnmodifiableTable.java

public class UnmodifiableTable<R, C, V> extends ForwardingTable<R, C, V> {
    com.google.common.collect.Table<R, C, V> table;

    public UnmodifiableTable(com.google.common.collect.Table<R, C, V> table) {
        this.table = table;
    }

From source file com.jtable.base.NamedColumnsTable.java

/**
 * A table where each column has a header.
 * 
 * @author Christoph Moser
 */
public class NamedColumnsTable extends ForwardingTable {

From source file com.yammer.collections.metrics.MeteredTable.java

/**
 * Provides metrics for the core operations, but not for the collections view operations.
 * Operations include: get, put, remove, size, clear
 *
 * @param <R>
 * @param <C>

From source file org.icgc.dcc.release.core.util.LazyTable.java

@RequiredArgsConstructor
public class LazyTable<R, C, V> extends ForwardingTable<R, C, V> {

    @NonNull
    private final Callable<Table<R, C, V>> factory;