List of usage examples for java.util Map interface-usage
From source file org.opencb.commons.datastore.core.ObjectMap.java
/** * Created by imedina on 20/03/14. */ public class ObjectMap implements Map<String, Object>, Serializable { private Map<String, Object> objectMap;
From source file org.sqsh.VariableManager.java
/**
* Provides an interface to manipulating session variables. This class
* goes to some length so that it can be utilized as a Map but does not
* properly implement all of the methods that Map requires, as these
* were not necessary for my purposes.
*/
From source file net.sf.morph2.context.contexts.BaseContext.java
/**
* <p>
* Convenient base class for Contexts. Validates arguments and takes care of
* logging and exception handling. Also implements the {@link java.util.Map}
* interface.
* </p>
From source file HybridIT.com.fourspaces.couchdb.Document.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 org.lockss.util.TimedMap.java
/**
* Map in which entries are automatically removed after some interval.
* Expired entries live until the map is next accessed. The set views
* (keySet(), entrySet(), values()) re unmodifiable. Fetching any set view
* updates the map, as does obtainsing an iterator over these sets.
* Because get() can cause this map to be altered, set iterators may throw
From source file org.latticesoft.util.container.SystemProperties.java
/** * @deprecated * @see PropertyMap */ public class SystemProperties implements Map, Serializable {
From source file no.abmu.finances.web.PostDataMap.java
/**
* PostDataMap.
*
* @author Thomas Oldervoll
* @author $Author: jens $
* @version $Rev: 14944 $
From source file com.fourspaces.couchdb.Document.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 arena.action.AttributesMap.java
/**
* Special map that mocks an attributes map by using the request's attributes to store stuff
* passed around. Avoids the need for a second map.
*
* NOTE: needs synchronization like Hashtable in order to be completely backwards compatible
*/
From source file org.apache.hadoop.io.FieldWritable.java
/** This class stores the header and field content using UTF8 encoding,
* and exposes a map interface for user to query the content fields using
* header key. <p>Each header key can only contain word characters [a-zA-Z_0-9]
* so that it can be easily processed by downstream programs. <p>This class also
* extends BinaryComparable and has fast run-time performance during shuffling.
*/