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

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

Introduction

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

Usage

From source file ch.raffael.util.common.collections.UMultimap.java

/**
 * @author <a href="mailto:herzog@raffael.ch">Raffael Herzog</a>
 */
public class UMultimap<K, V> extends ForwardingMultimap<K, V> implements Serializable {
    private static final long serialVersionUID = 12022401L;

From source file com.google.gdata.util.common.net.UriParameterMap.java

/**
 * Represents a sequence of name-value pairs encoded using the
 * application/x-www-form-urlencoded content type, typically as the query part
 * of a URI, as defined by section 17.13.4 of the W3C's <a
 * href="http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1">HTML
 * 4.01 Specification</a>.

From source file org.jclouds.ultradns.ws.domain.DirectionalGroup.java

/**
 * A region is a set of territory names.
 * 
 * @author Adrian Cole
 */
public class DirectionalGroup extends ForwardingMultimap<String, String> {

From source file org.zalando.logbook.QueryParameters.java

final class QueryParameters extends ForwardingMultimap<String, String> {

    private static final QueryParameters EMPTY = new QueryParameters();

    private final Multimap<String, String> parameters;

From source file org.diorite.auth.PropertyMap.java

/**
 * Represent {@link Multimap} for Properties mapped by string key.
 *
 * @see Property
 */
public class PropertyMap extends ForwardingMultimap<String, Property> implements NbtSerializable {