Example usage for java.util HashMap subclass-usage

List of usage examples for java.util HashMap subclass-usage

Introduction

In this page you can find the example usage for java.util HashMap subclass-usage.

Usage

From source file org.slc.sli.api.selectors.model.SemanticSelector.java

/**
 * Convenience wrapper for Selectors that contain type information
 * @author jstokes
 */
public class SemanticSelector extends HashMap<Type, List<SelectorElement>> implements SelectorQueryVisitable {

From source file HashList.java

/** 
 * Class which creates mapping between keys and a list of values.  
 */
public class HashList extends HashMap {

    private static final long serialVersionUID = 1;

From source file eu.freme.common.conversion.SerializationFormatMapper.java

/**
 * This class should be used to normalize serialization formats.
 * Every class working with serialization formats should autowire
 * this to map formats to common values and to add specific format
 * mappings, if necessary.
 */

From source file couchdb.StringToStringMap.java

public class StringToStringMap extends HashMap<String, String> {

    private static final long serialVersionUID = 1L;

    public StringToStringMap() {
        super();

From source file org.apache.zeppelin.interpreter.launcher.K8sSpecTemplate.java

public class K8sSpecTemplate extends HashMap<String, Object> {
    public String render(File templateFile) throws IOException {
        String template = FileUtils.readFileToString(templateFile, Charset.defaultCharset());
        return render(template);
    }

From source file consistencyTests.util.StringToStringMap.java

public class StringToStringMap extends HashMap<String, String> {

    private static final long serialVersionUID = 1L;

    public StringToStringMap() {
        super();

From source file org.exoplatform.services.ext.action.InvocationContext.java

/**
 * Created by The eXo Platform SAS.
 * 
 * @author Gennady Azarenkov
 * @version $Id: InvocationContext.java 11907 2008-03-13 15:36:21Z ksm $
 */

From source file org.nuxeo.common.collections.ScopedMap.java

/**
 * Scoped map holding data for a given scope.
 * <p>
 * Used to store context data and invalidate some data given its scope.
 * Implements Map for easier use from interface.
 *

From source file org.iwethey.forums.web.post.ExpandedHistory.java

/**
 * Holds the expanded history items for this user for the session.
 * <p>
 * $Id: ExpandedHistory.java 55 2004-12-07 21:53:42Z anderson $
 * <p>
 * @author Scott Anderson (<a href="mailto:scott@iwethey.org">scott@iwethey.org</a>)

From source file hepple.postag.Lexicon.java

/**
 * A {@link java.util.HashMap} that maps from lexical entry
 * ({@link java.lang.String}) to possible POS categories
 * ({@link java.util.List}
 */
class Lexicon extends HashMap<String, List<String>> {