List of usage examples for java.util HashMap subclass-usage
From source file edu.mit.mobile.android.locast.data.SyncMap.java
public class SyncMap extends HashMap<String, SyncItem> { /** * */ private static final long serialVersionUID = 4817034517893809747L;
From source file com.netflix.spinnaker.clouddriver.kubernetes.v2.description.KubernetesManifest.java
public class KubernetesManifest extends HashMap<String, Object> { private static <T> T getRequiredField(KubernetesManifest manifest, String field) { T res = (T) manifest.get(field); if (res == null) { throw MalformedManifestException.missingField(manifest, field); }
From source file coral.service.ErrorFlag.java
public class ErrorFlag extends HashMap<String, String> { private static final long serialVersionUID = 1L; protected final Log logger = LogFactory.getLog(this.getClass());
From source file tufts.vue.PropertyMap.java
/**
* @deprecated -- replaced by MetaMap Nov 2008
*
* A general HashMap for storing property values: e.g., meta-data.
*
* @version $Revision: 1.28 $ / $Date: 2010-02-03 19:17:41 $ / $Author: mike $
From source file nl.strohalm.cyclos.utils.binding.MapBean.java
/** * Map class implementing the DynaBean interface * @author luis */ public class MapBean extends HashMap<String, Object> implements DynaBean {
From source file MultiMap.java
/**
*
* MultiMap is a Java version of the C++ STL class std::multimap. It allows
* users to associate more than one value with a unique key. Each key points
* to a collection of values that can be traversed independently of the map.
* The integrity of the map is such that it only protects the key values, not
From source file edu.gatech.i3l.fhir.jpa.dao.SearchParameterMap.java
public class SearchParameterMap extends HashMap<String, List<List<? extends IQueryParameterType>>> { private static final long serialVersionUID = 1L; private Integer myCount; private Set<Include> myIncludes;
From source file mml.handler.mvd.Archive.java
/** * A set of CorCode or CorTex files, each a version of the same work, * indexed by the group-path/shortname separated by "/" * @author desmond */ public class Archive extends HashMap<String, char[]> {
From source file org.wso2.andes.server.security.access.ObjectProperties.java
/**
* An set of properties for an access control v2 rule {@link ObjectType}.
*
* The {@link #matches(ObjectProperties)} method is intended to be used when determining precedence of rules, and
* {@link #equals(Object)} and {@link #hashCode()} are intended for use in maps. This is due to the wildcard matching
* described above.
From source file org.kuali.rice.kns.util.ActionFormUtilMap.java
/**
* Utility map for the action form to provide a way for calling functions through jstl.
*
* @deprecated Only used in KNS classes, use KRAD.
*/
@Deprecated