List of usage examples for java.util HashMap subclass-usage
From source file MultiMap.java
/**
* An implementation of a <code>MultiMap</code>, which is basically a Map
* with multiple values for a key. This will be removed when SUN see sense and
* include it in the JDK java.util package as standard.
*
* @version $Revision: 1.6 $
From source file com.storageroomapp.client.Entry.java
/**
* The Entry object represents an entry in a collection. Entry objects
* are normally obtained via querys to collections (see how in
* the CollectionEntries class).
* <p>
* When you wish to GET or CREATE an Entry, see the CollectionEntries class
From source file com.netflix.spinnaker.clouddriver.kubernetes.v2.description.manifest.KubernetesManifest.java
public class KubernetesManifest extends HashMap<String, Object> { private static ObjectMapper mapper = new ObjectMapper(); @Override public KubernetesManifest clone() { return (KubernetesManifest) super.clone();
From source file org.sakaiproject.metaobj.shared.model.ElementListBeanWrapper.java
/**
* Created by IntelliJ IDEA.
* User: johnellis
* Date: Jan 15, 2007
* Time: 10:46:04 AM
* To change this template use File | Settings | File Templates.
From source file com.funambol.lanciadelta.LanciaDeltaBeanMap.java
/** * This class is just to turn a BeanMap into a Map<String, Object> * * @author ste */ public class LanciaDeltaBeanMap extends HashMap<String, Object> {
From source file licenseUtil.LicensingObject.java
/** * Created by Arne Binder (arne.b.binder@gmail.com) on 10.09.2015. */ public class LicensingObject extends HashMap<String, String> { public enum ColumnHeader {
From source file org.nuxeo.ecm.automation.core.util.Properties.java
/**
* Inline properties file content. This class exists to have a real type for parameters accepting properties content.
*
* @see Constants
* @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
*/
From source file org.nuxeo.ecm.webengine.session.UserSession.java
/**
* Used to store user session. This object is cached in a the HTTP session
* Principal, subject and credentials are immutable per user session
*
* @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a>
*
From source file org.ejbca.core.model.ra.raadmin.UserNotification.java
/**
* Class holding information about user notification sent when a user transitions through
* the work-flow.
* This class is implemented on top of a HashMap, so it can easily be upgraded with new features
* such as different notification actions (apart from email) etc.
*
From source file de.tudarmstadt.ukp.dkpro.wsd.si.dictionary.util.DictionaryWithoutFrequencies.java
/** * A specialized HashMap for dictionary entries wich consist of an anchor and a list of targets * @author nico.erbs@gmail.com * */ public class DictionaryWithoutFrequencies extends HashMap<String, List<String>> {