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.autentia.wuija.web.jsf.MsgMap.java

/**
 * Este mapa sirve para poder acceder desde las jspx al sistema de i18n. En la jspx bastar con poner <code>msg['labelId']</code> y se
 * har la resolucin con respecto al <code>Locale</code> del usuario.
 * <p>
 * Practicamente todas las operaciones de este mapa no estn soportadas. La unica que si est soportada y hace realmente
 * el trabajo es el mtodo {@link #get(Object)}, que es el que se encarga de acceder al sistema de i18n y traducir el id

From source file org.codice.ddf.configuration.DictionaryMap.java

/**
 * A HashMap based Dictionary for use with OSGI methods requiring a Dictionary
 *
 * @param <K>
 * @param <V>
 */

From source file org.springframework.util.CachingMapDecorator.java

/**
 * A simple decorator for a Map, encapsulating the workflow for caching
 * expensive values in a target Map. Supports caching weak or strong keys.
 *
 * <p>This class is also an abstract template. Caching Map implementations
 * should subclass and override the <code>create(key)</code> method which

From source file DemandCache.java

/**
 * A cache that purges values according to their frequency and recency of use and other qualitative
 * values.
 * 
 * @param <K> The type of key to use for the cache
 * @param <V> The type of value to cache

From source file org.culturegraph.mf.util.tries.CharMap.java

/**
 * A {@link Map} with char as key. Used for set matching, tries etc. <br>
 * <strong>Important:</strong> It is optimized for size in memory. No extra information for fast entry/keySet/values iteration etc. is held.
 * 
 * @author Markus Michael Geipel
 * 

From source file SessionMap.java

/**
 * Provides a Map adaptor for HttpSession objects. A SessionMap instance is
 * available in each Velocity page using the name "<span class="blue">session</span>".
 * <p/>
 * For example suppose we have a User object in the session with the
 * attribute name "user" when a user is logged on.  We can display the users

From source file org.kuali.kfs.sys.util.ReflectionMap.java

/**
 * A Map implementation which wraps a Java bean and can return values from that based on property Strings.  Unlike Apache Common's BeanMap, this Map can handle nested properties - though for the sake of that power,
 * the Map makes no effort to know its Set of keys at all - since to figure all of that out, it would need to recurse down and avoid property cycles, etc.  It does not know how many Entries it has.  Furthermore,
 * one cannot put any values into the Map and expect the underlying bean to have their own values changed.  It's really a read-only way to read nested properties from the underlying object via Map semantics.
 */
public class ReflectionMap implements Map<String, Object> {

From source file com.bitvantage.bitvantagetypes.collections.TreeBidirectionalMap.java

/**
 * Wrapper on the ApacheCommons BidiMap that allows non-comparables and does
 * not allow re-insertion.
 * 
 * @author Matt Laquidara
 */

From source file com.enonic.esl.containers.ExtendedMap.java

public class ExtendedMap extends HashMap implements Map {

    private final static long serialVersionUID = 100000000L;

    private boolean allowNullValues = false;

From source file uk.ac.gda.util.dictionary.MapBasedDictionary.java

@SuppressWarnings("rawtypes")
public class MapBasedDictionary extends Dictionary implements Map {

    private Map map;

    public void setMap(Map map) {