List of usage examples for java.util HashMap subclass-usage
From source file org.kitodo.filemanagement.locking.UserMapForURI.java
/** * A HashMap that stores for each user, which URI has the read copy currently * issued for that user and how many locks the user has just opened on that URI. */ class UserMapForURI extends HashMap<String, Pair<URI, AtomicInteger>> { private static final long serialVersionUID = 1L;
From source file flashgateway.io.ASObject.java
/**
* Implementation of MM's flashgateway.io.ASObject so that we can use
* ASTranslator
*
* @author Jason Calabrese <mail@jasoncalabrese.com>
* @author Sean C. Sullivan
From source file org.LexGrid.LexBIG.caCore.applicationservice.resource.TimedMap.java
public class TimedMap<K, V> extends HashMap<K, V> implements InitializingBean { private static final long serialVersionUID = 189654533L; private Timer evictionTimer;
From source file com.clican.pluto.common.bean.PropertyIntialHashMap.java
public class PropertyIntialHashMap<K, V> extends HashMap<K, V> implements ApplicationContextAware { /** * */ private static final long serialVersionUID = 3312811089454335428L;
From source file net.bluemix.connectors.core.service.MessageHubFactoryConfig.java
/** * * @author Hans W. Uhlig <hans.uhlig@ibm.com> */ public class MessageHubFactoryConfig extends HashMap<String, Object> implements ServiceConnectorConfig {
From source file org.assertj.assertions.generator.TemplateRegistry.java
@SuppressWarnings("serial") public class TemplateRegistry extends HashMap<Template.Type, Template> { public void register(Template template) { checkTemplateParameter(template);
From source file com.blacklocus.jres.model.search.Facets.java
public class Facets extends HashMap<String, JsonNode> { public <T extends Facet> T get(String facetName, Class<T> klass) { return ObjectMappers.fromJson(get(facetName), klass); }
From source file com.android.loganalysis.item.GenericMapItem.java
/** * An IItem that just represents a simple key/value map */ @SuppressWarnings("serial") public class GenericMapItem<V> extends HashMap<String, V> implements IItem {
From source file org.ho.util.BiDirectionalMap.java
/**
* BiDirectionalMap provides a getReverse() method in addition to the HashMap to
* get a reverse mapping.
*
* @param <K>
* the type of the keys
From source file edu.illinois.cs.cogcomp.utils.SparseDoubleVector.java
/** * SparseDoubleVector: basically a hashmap. * Created by stephen on 9/24/15. */ public class SparseDoubleVector<TKey> extends HashMap<TKey, Double> implements Serializable {