List of usage examples for java.util HashMap subclass-usage
From source file com.workplacesystems.utilsj.collections.HashMap4Template.java
/** * Convenience class that can be used as a starting point for things that need to * accumulate values into four levels. Extends a standard map, but uses the MultiKey * class to create the key. */ public abstract class HashMap4Template<K1, K2, K3, K4, V> extends HashMap<MultiKey, V> {
From source file com.mirth.connect.client.ui.components.rsta.ac.js.PartialHashMap.java
public class PartialHashMap<V> extends HashMap<String, List<V>> { private static final Pattern SPLIT_PATTERN = Pattern.compile("\\s+|-|(?=[A-Z0-9_][a-z])"); private Map<String, String[]> splitMap = new HashMap<String, String[]>();
From source file com.thoughtworks.go.domain.ConfigErrors.java
public class ConfigErrors extends HashMap<String, List<String>> implements Serializable { public void add(String fieldName, String msg) { List<String> msgList = get(fieldName); if (msgList == null) { msgList = new ArrayList<>(); put(fieldName, msgList);
From source file ste.web.http.HttpSessionContext.java
/** * * @author ste */ public class HttpSessionContext extends HashMap<String, Object> implements HttpContext {
From source file HashMap.java
/**
* Extended Version of {@link java.util.HashMap} that provides an extended
* get method accpeting a default value. The default value is returned if
* the map does not contain a value for the provided key.
*
* @version $Id: HashMap.java 587751 2007-10-24 02:41:36Z vgritsenko $
From source file monasca.log.api.model.Log.java
/**
* Represents a log.
*
* It allows any set of fields to be placed as log entity.
* That is particularly useful for JSON based messages where
* known fields can not be clearly determined and only requirement
From source file org.eclipse.ecr.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 AIR.Common.Configuration.ConfigurationSection.java
public class ConfigurationSection extends HashMap<String, String> { private static final long serialVersionUID = 1L; /** * Append properties from a map to this collection * @param updates
From source file org.eclipse.skalli.testutil.HashMapUserService.java
/** * Simple {@link UserService} implementation derived from {@link HashMap}. */ @SuppressWarnings("nls") public class HashMapUserService extends HashMap<String, User> implements UserService {
From source file TDS.Proctor.Sql.Data.Accommodations.AccTypes.java
@JsonSerialize(using = HashMapDataSerializer.class) public class AccTypes extends HashMap<String, AccType> { /** * */ private static final long serialVersionUID = 1L;