Example usage for java.util Map interface-usage

List of usage examples for java.util Map interface-usage

Introduction

In this page you can find the example usage for java.util Map interface-usage.

Usage

From source file com.ning.metrics.collector.processing.counter.CounterDistribution.java

/**
 * Container for the unique identifier counts aka distribution for a rolled-up
 * counter.  This class will
 * @author kguthrie
 */
@JsonIgnoreProperties(ignoreUnknown = true)

From source file org.largecollections.LargeCacheMap.java

/**
 * LargeCacheMap is a true implementation of Map. 
 * 
 * It differs from CacheMap in that it provides a lsize() function which is longer version of size(). In this respect it deviates from a
 * typical Map implementation. In return it allows LargeCacheMap to have size higher than Integer.MAX_VALUE
 * 

From source file CharArrayMap.java

/**
 * A simple class that stores key Strings as char[]'s in a hash table. Note that
 * this is not a general purpose class. For example, it cannot remove items from
 * the map, nor does it resize its hash table to be smaller, etc. It is designed
 * to be quick to retrieve items by char[] keys without the necessity of
 * converting to a String first.

From source file org.largecollections.CacheMap.java

/**
 * CacheMap is a true implementation of Map. Unlike FastHashMap which operates
 * about 30% faster on put() and remove() CacheMap returns the correct value for
 * size() function. OffHeapMap provides a heuristic value for size which is
 * compensated by its faster performance.
 */

From source file IdentityMap.java

/**
 * A <tt>Map</tt> where keys are compared by object identity,
 * rather than <tt>equals()</tt>.
 */
public final class IdentityMap implements Map {

From source file com.aerospike.example.cache.Flights.java

public class Flights<K, V> implements Map<K, V> {
    private static Logger log = Logger.getLogger(Flights.class);
    public static final String FLT_DATA_BIN = "flt_data_bin";

    private AerospikeClient asClient;
    private String namespace;

From source file no.abmu.questionnaire.web.FieldDataMap.java

/**
 * FieldDataMap. This class dispatches calls to fieldData in the private variable fieldData. 
 * 
 * @author Aase Mestad, aase@jpro.no
 * @author $Author: jens $
 * @version $Rev: 14827 $

From source file de.innovationgate.utils.UserHashMap.java

/**
 * A Map that contains different maps for different users identified by a unique user name.
 * <p>
 * The UserHashMap may be regarded a "ThreadLocal" Map where every thread may have it's own private map.
 * Main difference to ThreadLoval: Every thread may choose from a list of available maps where each map 
 * belongs to a single user.

From source file MiniMap.java

/**
 * A fixed size map implementation. Holds an array of keys and array of values which correspond by
 * index. Null key entries are available for use. This means that null is not a valid key.
 * 
 * @author Jonathan Locke
 * @param <K>

From source file org.largecollections.FastCacheMap.java

/**
 * FastHashMap is an implementation of java.util.Map. FastHashMap provides a heuristic value for size which is compensated by its 
 * faster performance. If you want a true implementation of Map which returns the most accurate value for size() use CacheMap or 
 * LargeCacheMap
 * 
 * It differs from CacheMap in that it provides a lsize() function which is longer version of size(). In this respect it deviates from a