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

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

Introduction

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

Usage

From source file joshng.util.collect.Pair.java

@Immutable
public class Pair<T, U> extends PublicImmutableEntry<T, U> {
    private static final F GET_FIRST = new F<Map.Entry, Object>() {
        public Object apply(Map.Entry pair) {
            return pair.getKey();
        }