List of usage examples for java.util HashMap subclass-usage
From source file MapSet.java
/** * Map from a given key to a set of values * * @author dzb */ public class MapSet<K, V> extends HashMap<K, Set<V>> {
From source file MapList.java
/** * Map from a given key to a list of values * * @author dzb */ public class MapList<K, V> extends HashMap<K, List<V>> {
From source file com.aol.one.patch.testobj.PatchableMap.java
/** * @author Madhu Ramanna <madhu.ramanna@advertising.com> dt 1/29/16. */ public class PatchableMap extends HashMap<String, String> implements Patchable {
From source file com.doubotis.restwrapper.data.JObject.java
/** * * @author Christophe */ public class JObject extends HashMap<String, Object> implements JSONCompatible, XMLCompatible {
From source file pl.chilldev.web.core.markup.Xmlns.java
/**
* xmlns="" attributes model.
*
* @version 0.0.1
* @since 0.0.1
*/
From source file com.aokyu.dev.pocket.http.HttpParameters.java
public class HttpParameters extends HashMap<String, Object> implements MessageBody { private static final long serialVersionUID = -7410515868503883376L; public HttpParameters() { super();
From source file HistoryMap.java
/**
* INTERNAL: Helper class for storing elements up to a certain amount, lower
* most elements will be removed to ensure a fixed size of the collection.
*
* @since 1.2.5
*/
From source file org.piwik.sdk.CustomVariables.java
public class CustomVariables extends HashMap<String, JSONArray> { /** * You can track up to 5 custom variables for each user to your app, * and up to 5 custom variables for each screen view. * <p/> * Desired json output:
From source file edu.illinois.cs.cogcomp.utils.InternDictionary.java
/** * Created by stephen on 9/30/15. */ public class InternDictionary<T> extends HashMap<T, T> { public InternDictionary() {
From source file com.sonicle.webtop.mail.ColumnVisibilitySetting.java
/** * * @author matteo */ public class ColumnVisibilitySetting extends HashMap<String, Boolean> {