List of usage examples for java.util HashMap subclass-usage
From source file org.broadinstitute.sting.utils.collections.DefaultHashMap.java
/**
* Created with IntelliJ IDEA.
* User: farjoun
* Date: 10/30/12
* Time: 3:20 PM
* To change this template use File | Settings | File Templates.
From source file org.nuxeo.ecm.platform.video.storyboard.SubtitleItem.java
public class SubtitleItem extends HashMap<String, Serializable> implements Serializable, Comparable<SubtitleItem> { private static final long serialVersionUID = 1L; public static final Log log = LogFactory.getLog(SubtitleItem.class);
From source file org.broadinstitute.gatk.utils.collections.DefaultHashMap.java
/**
* Created with IntelliJ IDEA.
* User: farjoun
* Date: 10/30/12
* Time: 3:20 PM
* To change this template use File | Settings | File Templates.
From source file com.enonic.esl.containers.ExtendedMap.java
public class ExtendedMap extends HashMap implements Map { private final static long serialVersionUID = 100000000L; private boolean allowNullValues = false;
From source file com.github.pmerienne.trident.state.cassandra.CassandraConfig.java
public class CassandraConfig extends HashMap<String, String> { public static final String STORM_CONFIG_KEY = "cassandra.state.config"; public static final String CONTACT_POINTS = "cassandra.contact.points";
From source file org.batoo.jpa.benchmark.TimeElement.java
/** * * @author hceylan * @since $version */ public class TimeElement extends HashMap<String, TimeElement> implements Comparable<TimeElement> {
From source file com.thruzero.common.core.map.StringMap.java
/**
* A {@code Map} of {@code String} objects with convenience functions to get and put values as {@code String},
* {@code int}, {@code boolean}, {@code Date}, etc.
*
* @author George Norman
*/
From source file com.iflytek.spider.metadata.SpellCheckedMetadata.java
/**
* A decorator to Metadata that adds spellchecking capabilities to property
* names. Currently used spelling vocabulary contains just the httpheaders from
* {@link HttpHeaders} class.
*
*/
From source file org.asmic.mta.model.StatusMap.java
@JsonSerialize public class StatusMap extends HashMap<String, Map<String, String>> implements Serializable { private static final long serialVersionUID = 50321683914847323L; public StatusMap() {
From source file org.extremecomponents.tree.TreeNode.java
/** * org.extremecomponents.tree.bean.TreeNode.java - * * @author Paul Horn */ public final class TreeNode extends HashMap {