List of usage examples for java.util HashMap subclass-usage
From source file org.cyberoam.iview.utility.MultiHashMap.java
/**
* <code>MultiHashMap</code> is the default implementation MultiMap interface.
* <p>
* A <code>MultiMap</code> is a Map with slightly different semantics.
* Putting a value into the map will add the value to a Collection at that key.
* Getting a value will return a Collection, holding all the values put to that key.
From source file knop.utils.stats.DataSet.java
/** * The Class DataSet. */ public class DataSet extends HashMap<String, ArrayList<Object>> { /** The image name. */
From source file org.sakaiproject.metaobj.shared.model.ElementBean.java
/**
* Created by IntelliJ IDEA.
* User: John Ellis
* Date: Mar 10, 2004
* Time: 3:45:39 PM
* To change this template use File | Settings | File Templates.
From source file CaseBlindHashMap.java
/**
* CaseBlindHashMap - a HashMap extension, using <code>String</code>s as key
* values.
*
* Internally, keys are case insensitive: <code>ABC</code> = <code>abc</code>.
*
From source file CaseBlindHashMap.java
/**
* CaseBlindHashMap - a HashMap extension, using <code>String</code>s as key
* values.
* <p>
* Internally, keys are case insensitive: <code>ABC</code> = <code>abc</code>.
* <p>
From source file com.netspective.axiom.connection.BasicConnectionProviderEntry.java
public class BasicConnectionProviderEntry extends HashMap implements ConnectionProviderEntry { private static final Log log = LogFactory.getLog(BasicConnectionProviderEntry.class); private static final Map STATISTICS_PROVIDERS = new HashMap(); public static final String KEYNAME_DRIVER_NAME = "Driver Name"; public static final String KEYNAME_DRIVER_VERSION = "Driver Version";
From source file org.objectstyle.cayenne.DataRow.java
/**
* DataRow is a map that holds values retrieved from the database for a
* given query row. DataRows are used to cache database data snapshots,
* and as a reference point for tracking DataObject changes.
*
* @author Andrei Adamchik
From source file knop.psfj.FovDataSet.java
/** * The Class FovDataSet. */ public class FovDataSet extends HashMap<String, FovDataSet.ValueList> { /** The image name. */
From source file com.icesoft.faces.component.outputchart.AbstractChart.java
class ColorMap extends HashMap { private static final long serialVersionUID = 1L; public ColorMap() { this.put("black", Color.BLACK); this.put("blue", Color.BLUE);
From source file org.nuxeo.ecm.core.storage.sql.Fragment.java
/** * A fragments map holds all {@link Fragment}s for non-main tables. */ class FragmentsMap extends HashMap<String, Fragment> { private static final long serialVersionUID = 1L;