List of usage examples for java.util HashMap subclass-usage
From source file org.ejbca.ui.web.ParameterMap.java
/**
* A map of parameters that implements the usual HttpServletRequest methods.
* Used by HttpUploads.
*
* @version $Id: ParameterMap.java 19902 2014-09-30 14:32:24Z anatom $
*/
From source file org.codice.ddf.persistence.PersistentItem.java
@SuppressWarnings("unchecked") public class PersistentItem extends HashMap<String, Object> { public static final String ID = "id_txt"; public static final String TEXT_SUFFIX = "_txt";
From source file graphql.servlet.GraphQLVariables.java
public class GraphQLVariables extends HashMap<String, Object> { private final GraphQLSchema schema; private final String query; public GraphQLVariables(GraphQLSchema schema, String query, Map<String, Object> variables) {
From source file org.yamj.common.util.TokensPatternMap.java
public abstract class TokensPatternMap extends HashMap<String, Pattern> { private static final long serialVersionUID = 2239121205124537392L; /** * Generate pattern using tokens from given string.
From source file com.onpositive.semantic.words3.MultiHashMap.java
/**
* <code>MultiHashMap</code> is the default implementation of the
* {@link org.apache.commons.collections.MultiMap MultiMap} interface.
* A <code>MultiMap</code> is a Map with slightly different semantics.
* Instead of returning an Object, it returns a Collection.
* So for example, you can put( key, new Integer(1) );
From source file org.ciscavate.cjwizard.FlatWizardSettings.java
/** * @author ddearing */ public class FlatWizardSettings extends HashMap<String, Object> implements WizardSettings { /**
From source file com.github.cjwizard.FlatWizardSettings.java
/**
* This settings can save pairs of key and values in a plain {@link HashMap}.
*
* Note that this class doesn't implement the transaction model, and
* so {@link #newPage(String)}, {@link #rollBack()} and {@link #commit()}
* methods don't do anything.
From source file tilt.handler.post.Options.java
/** * Store options for TILT2 * @author desmond */ public class Options extends HashMap<Options.Keys, Object> { private void setDefaults() {
From source file org.eclipse.ecr.automation.OperationContext.java
/**
* An operation context. Holds context objects, a context parameters map and a
* list of operations to run.
* <p>
* Context objects are:
* <ul>
From source file com.gdc.nms.web.mibquery.wizard.ciscavate.cjwizard.FlatWizardSettings.java
/**
* This settings can save pairs of key and values in a plain {@link HashMap}.
*
* Note that this class doesn't implement the transaction model, and
* so {@link #newPage(String)}, {@link #rollBack()} and {@link #commit()}
* methods don't do anything.