List of usage examples for java.util Map interface-usage
From source file org.siphon.jssp.JsspSession.java
public class JsspSession implements HttpSession, Map<String, Object> { final HttpSession session; public JsspSession(HttpSession session) { this.session = session;
From source file org.jahia.services.content.impl.vfs.PropertyIteratorImpl.java
/** * Jahia's wrapper of the JCR <code>javax.jcr.PropertyIterator</code>. * * @author toto */ public class PropertyIteratorImpl extends RangeIteratorImpl implements PropertyIterator, Map {
From source file org.maltparser.core.helper.HashMap.java
/**
* A memory-efficient hash map.
*
* @param <K> the key type
* @param <V> the value type
*/
From source file census.couchdroid.CouchDocument.java
/**
* Everything in CouchDB is a Document. In this case, the document is an object backed by a
* JSONObject. The Document is also aware of the database that it is connected to. This allows
* the Document to reload it's properties when needed. The only special fields are "_id", "_rev",
* "_revisions", and "_view_*".
* <p>
From source file pt.utl.ist.online.learning.utils.MemoryEfficientHashMap.java
/**
* A memory-efficient hash map.
*
* @param <K> the key type
* @param <V> the value type
*/
From source file org.apache.jcs.utils.struct.LRUMap.java
/**
* This is a simple LRUMap. It implements most of the map methods. It is not recommended that you
* use any but put, get, remove, and clear.
* <p>
* Children can implement the processRemovedLRU method if they want to handle the removal of the
* lest recently used item.
From source file bwem.map.MapImpl.java
public abstract class MapImpl implements Map { private final MapPrinter mapPrinter; protected TerrainData terrainData = null; protected NeutralData neutralData = null;
From source file info.magnolia.jcr.util.ContentMap.java
/**
* Map based representation of JCR content. This class is for instance used in template scripts to allow notations like
* <code>content.propName</code>. It first tries to read a property with name (key) and if not present checks for the
* presence of child node. Few special property names map to the JCR methods: \@name, \@id, \@path, \@level, \@nodeType
*
* @version $Id$
From source file IdentityMap.java
/**
* An IdentityMap that uses reference-equality instead of object-equality. According
* to its special function it violates some design contracts of the <code>Map</code>
* interface.
*
* @author <a href="mailto:ralf DOT joachim AT syscon DOT eu">Ralf Joachim</a>
From source file Cache.java
/**
* A specialized Map that is size-limited (using an LRU algorithm) and
* has an optional expiration time for cache items. The Map is thread-safe.<p>
*
* The algorithm for cache is as follows: a HashMap is maintained for fast
* object lookup. Two linked lists are maintained: one keeps objects in the