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

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

Introduction

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

Usage

From source file org.jclouds.rackspace.cloudloadbalancers.domain.Metadata.java

/**
 * Key and value must be 256 characters or less. All UTF-8 characters are valid.
 * </p>
 * Use the *Id methods when you need to get a metadata id for updating and removal.
 * 
 * @author Everett Toews

From source file com.mgmtp.jfunk.core.data.DataSetAdapter.java

/**
 * Adapter class so {@link DataSet DataSets} may be accessed via {@link Configuration}.
 * 
 */
public class DataSetAdapter extends ForwardingMap<String, String> {

From source file org.jclouds.rackspace.cloudloadbalancers.v1.domain.Metadata.java

/**
 * Key and value must be 256 characters or less. All UTF-8 characters are valid.
 * </p>
 * Use the *Id methods when you need to get a metadata id for updating and removal.
 * 
 * @author Everett Toews

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

/**
 * Key set, value set, and entry set are all immutable as are their iterators.
 * Otherwise behaves as you would expect.
 */
public class COWMap<K, V> extends ForwardingMap<K, V> implements Map<K, V> {
    private final AtomicReference<ImmutableMap<K, V>> m_map;

From source file br.com.blackhubos.eventozero.factory.EventData.java

public class EventData extends ForwardingMap<String, Object> {

    /**
     * @param key Chave na qual o dado est associado.
     * @return Retorna um dado salvo anteriormente.
     * @throws NoSuchElementException

From source file org.jclouds.dynect.v3.domain.rdata.SPFData.java

/**
 * Corresponds to the binary representation of the {@code SPF} (Sender Policy
 * Framework) RData
 * 
 * <h4>Example</h4>
 * 

From source file com.dyn.client.v3.traffic.domain.rdata.SPFData.java

/**
 * Corresponds to the binary representation of the {@code SPF} (Sender Policy
 * Framework) RData
 * 
 * <h4>Example</h4>
 * 

From source file com.isotrol.impe3.api.support.DefaultDeviceCapabilities.java

/**
 * Default device capabilities.
 * @author Andres Rodriguez
 */
public abstract class DefaultDeviceCapabilities extends ForwardingMap<String, String>
        implements DeviceCapabilities {

From source file org.cejug.hurraa.validation.CejugErrorMap.java

public class CejugErrorMap extends ForwardingMap<String, Collection<String>> {

    private final Map<String, Collection<String>> delegate;
    private List<Message> messages;

    public CejugErrorMap(List<Message> messages) {

From source file net.sf.derquinsej.stats.CounterMap.java

/**
 * A concurrent counter map. All the map-modifying operations except add and reset throw
 * UnsupportedOperationException
 * @author Andres Rodriguez
 * @param <K> The type of keys.
 */