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

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

Introduction

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

Usage

From source file com.addthis.bundle.value.DelegatingValueMapEntry.java

public class DelegatingValueMapEntry extends ForwardingMapEntry<String, ValueObject> implements ValueMapEntry {

    private final Map.Entry<String, ValueObject> delegate;

    public DelegatingValueMapEntry(Map.Entry<String, ValueObject> delegate) {
        this.delegate = delegate;