List of usage examples for java.util LinkedHashMap subclass-usage
From source file org.kuali.rice.krad.datadictionary.exporter.StringMap.java
/**
* Adds a litle strong type-checking and validation on top of the generic LinkedHashMap
*
*
*/
@Deprecated
From source file com.tussle.motion.CollisionMap.java
public class CollisionMap extends LinkedHashMap<Pair<StageElement<CollisionStadium>, StageElement>, ProjectionVector> { public ProjectionVector get(StageElement<CollisionStadium> c, StageElement s) { //Ah well, looks like I'm going to have to use a transient pair return get(Pair.of(c, s)); }
From source file minium.cucumber.config.ConfigProperties.java
public class ConfigProperties extends LinkedHashMap<String, Object> implements Jsonable { private static final long serialVersionUID = -1491942616465352922L; public ConfigProperties() { }
From source file com.bazaarvoice.jolt.jsonUtil.testdomain.five.LogicalFilter5.java
/**
* In comparison to the other implementations of LogicalFilter, this one is "simpler" from a Jackson perspective, aka
* no custom Serializer and Deserializer.
*
* However that simplicity comes at the "complexity" of being a Map ( extends LinkedHashMap ).
* A) it feels odd, and
From source file io.renren.common.utils.Query.java
/**
* ?
*
* @author Mark sunlightcs@gmail.com
* @since 2.0.0 2017-03-14
*/
From source file nl.esciencecenter.ptk.web.URIQueryParameters.java
/**
* Simple {Name,Value} parameter list for URI Queries. <br>
* These will be appended to an URI after the "?" part as
* "<Name>=<Value>&,... Note: to stay compatible with actula URI
* encoding, apaches URI Encodig is uses. This encoding is not equivalent with
* Java's URI and URL encoding.
From source file com.parse.simple.SimpleLruCache.java
public class SimpleLruCache<K, V> extends LinkedHashMap<K, V> { private LruCache<K, V> cache; private class MyLruCache<E, T> extends LruCache<E, T> { public MyLruCache(int maxSize) { super(maxSize);
From source file org.openmrs.pentaho.plugin.reporting.rest.SimpleObject.java
/** * This is the Map returned for all objects. The properties are just key/value pairs. If an object * has subobjects those are just lists of SimpleObjects */ public class SimpleObject extends LinkedHashMap<String, Object> {
From source file org.mybatis.spring.ext.core.annotation.AnnotationAttributes.java
/**
* {@link LinkedHashMap} subclass representing annotation attribute key/value pairs
* as read by Spring's reflection- or ASM-based {@link
* org.springframework.core.type.AnnotationMetadata AnnotationMetadata} implementations.
* Provides 'pseudo-reification' to avoid noisy Map generics in the calling code as well
* as convenience methods for looking up annotation attributes in a type-safe fashion.
From source file org.apache.ranger.plugin.policyengine.CacheMap.java
public class CacheMap<K, V> extends LinkedHashMap<K, V> { private static final long serialVersionUID = 1L; private static final Log LOG = LogFactory.getLog(CacheMap.class); private static final float RANGER_CACHE_DEFAULT_LOAD_FACTOR = 0.75f;