List of usage examples for java.util LinkedHashMap subclass-usage
From source file com.taobao.tddl.common.util.BoundedConcurrentHashMap.java
public class BoundedConcurrentHashMap<K, V> extends LinkedHashMap<K, V> { private static final Log logger = LogFactory.getLog(BoundedConcurrentHashMap.class); private static final long serialVersionUID = 2615986629983154259L; private static final int DEFAULT_CAPACITY = 389;
From source file cn.iyowei.stockai.rest.DataMap.java
/**
* Implementation of {@link java.util.Map} for use when building model data for use
* with UI tools. Supports chained calls and generation of model attribute names.
* <p/>
* <p>This class serves as generic model holder for both Servlet and Portlet MVC,
* but is not tied to either of those. Check out the {@link Model} interface for
From source file com.github.wnameless.json.flattener.JsonifyLinkedHashMap.java
/**
* {@link JsonifyLinkedHashMap} is simple a LinkedHashMap but with an override
* jsonify toString method.
*
* @author Wei-Ming Wu
*
From source file org.eda.fpsrv.StrTable.java
/** * * @author Dimitar Angelov */ public class StrTable extends LinkedHashMap<String, String> {
From source file org.apache.struts2.views.java.Attributes.java
/** * Map of tag attributes, used for rendering the tags */ public class Attributes extends LinkedHashMap<String, String> { private static final long serialVersionUID = 4103241472140545630L;
From source file org.apache.arrow.vector.util.JsonStringHashMap.java
public class JsonStringHashMap<K, V> extends LinkedHashMap<K, V> { private static ObjectMapper mapper; static { mapper = new ObjectMapper();
From source file com.scit.sling.test.MockValueMap.java
/** * A Mock {@link ValueMap} that has some basic type conversion. * Dates should be stored as {@link DateTime} objects. */ public class MockValueMap extends LinkedHashMap<String, Object> implements ValueMap { private static final long serialVersionUID = 1L;
From source file edu.cornell.med.icb.maps.LinkedHashToMultiTypeMap.java
/** * An extension of LinkedHashMap[T, String]. Internally, all values are stored as strings * but they can be retrieved directly as String, Integer, Double, in[], or double[]. * @author Kevin Dorff */ public class LinkedHashToMultiTypeMap<T> extends LinkedHashMap<T, String> {
From source file com.stimulus.archiva.domain.Settings.java
public class Settings extends java.util.LinkedHashMap<String, String> { private static final long serialVersionUID = 1598672170612192642L; private static final char keyValueSeparator = '='; protected static Log logger = LogFactory.getLog(Settings.class);
From source file it.doqui.index.ecmengine.business.personalization.splitting.util.LRUCache.java
public class LRUCache<K extends Serializable, V> extends LinkedHashMap<K, V> { private static final long serialVersionUID = -3811728082796063327L; private static final int DEFAULT_MAX_SIZE = 500; private static Log logger = LogFactory.getLog(SplittingNodeServiceConstants.ECMENGINE_SPLITTING_LOG_CATEGORY);