List of usage examples for java.util Map interface-usage
From source file com.joyent.manta.util.LookupMap.java
/**
* Custom built {@link Map} implementation that supports case-sensitive and
* case-insensitive operations.
*
* @param <String> key as string because we provide case-insensitive operations
* @param <V> value to be looking up
From source file org.apache.cocoon.el.objectmodel.ObjectModel.java
/** * ObjectModel is a special {@link Map} that cannot be modified using standard {@link Map} methods, except * {@link #put(Object, Object)} method. */ public interface ObjectModel extends Map {
From source file com.livinglogic.utils.AbstractMapChain.java
/**
* A {@code Map} implemention that forwards all operations to one or two mapps.
* When a key or entry isn't found in the first map the second ("chained")
* {@code Map} is consulted.
*
* Methods of {@code AbstractMapChain} that modify the mapping only modify the first
From source file PropertiesMap.java
/**
* Represents a persistent set of properties.
* <p>This class is a replacement for {@link Properties} class.
* <p>Please note that {@link #put(String,Object)} has additional semantics.
*
* @author Fyodor Kupolov
From source file org.apache.taverna.scufl2.api.impl.LazyMap.java
/**
* A lazy TreeMap, inspired by org.apache.commons.collections.map.LazyMap
* <p>
* On {@link #get(Object)}, if a key is not found in the map,
* {@link #getDefault(Object)} will be called to create the value for the given
* key. This value is subsequently inserted into the map before being returned.
From source file com.amazonaws.hal.client.HalLinkMap.java
class HalLinkMap<T> implements Map<String, T> { //------------------------------------------------------------- // Variables - Private //-------------------------------------------------------------
From source file org.eclipse.swordfish.core.util.MapBasedDictionary.java
/**
* Implementation taken from Spring DM
*
* Dictionary implementation backed by a map instance. While the JDK provides a
* Dictionary implementation through Hashtable, the class itself is always
* synchronized and does not maintain the internal order.
From source file com.bstek.dorado.view.el.ResourceExpressionHandler.java
/** * @author Benny Bao (mailto:benny.bao@bstek.com) * @since 2012-5-7 */ public class ResourceExpressionHandler implements Map<String, String> { private static final Log logger = LogFactory.getLog(ResourceExpressionHandler.class);
From source file com.siberhus.ngai.EntityQueryMap.java
/**
* <p>
* This map is not for use in business logic that need some key-value pair feature.<br/>
* It's just the simple map that has special {@link EntityListMap#get(Object)} method.
* </p>
* <p>
From source file org.apache.axis2.transport.http.CommonsTransportHeaders.java
public class CommonsTransportHeaders implements Map { private Header[] headers; HashMap headerMap = null; public CommonsTransportHeaders(Header[] headers) {