Example usage for java.util LinkedHashMap subclass-usage

List of usage examples for java.util LinkedHashMap subclass-usage

Introduction

In this page you can find the example usage for java.util LinkedHashMap subclass-usage.

Usage

From source file SmallLRUCache.java

/**
 * This class implements a small LRU object cache.
 *
 * @param <K> the key
 * @param <V> the value
 */

From source file com.ts.db.connector.ConnectorMap.java

/**
 * Class ConnectorMap
 *
 * @author daibheid
 */
public class ConnectorMap extends LinkedHashMap<String, Connector> {

From source file be.ugent.maf.cellmissy.cache.impl.DensityFunctionHolderCacheSingleCell.java

/**
 *
 * @author Paola
 */
@Component("densityFunctionHolderCacheSingleCell")
public class DensityFunctionHolderCacheSingleCell extends

From source file org.openlaszlo.utils.ComparisonMap.java

/**
 * Hash table that stores keys case-sensitively, but compares them
 * case-insensitively
 *
 * This differs from
 * org.apache.commons.collections.map.CaseInsensitiveMap in that it

From source file Main.java

class SortableValueMap<K, V extends Comparable<V>> extends LinkedHashMap<K, V> {
    public SortableValueMap() {
    }

    public SortableValueMap(Map<K, V> map) {
        super(map);

From source file com.bstek.dorado.data.variant.LinkedMetaData.java

/**
 * ??
 * 
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since May 12, 2009
 */

From source file MostRecentlyUsedMap.java

/**
 * Holds a map of most recently used items of a given maximum size. Old entries
 * are expired when the map exceeds that maximum size.
 * 
 * @author Jonathan Locke
 */

From source file cn.vlabs.duckling.vwb.service.dml.html2dml.ForgetNullValuesLinkedHashMap.java

/**
 * Introduction Here.
 * 
 * @date 2010-3-8
 * @author 
 */

From source file LRUCache.java

/**
 * A Least Recently Used Cache
 *
 * @version $Revision: 747062 $
 */
public class LRUCache<K, V> extends LinkedHashMap<K, V> {

From source file com.vmware.identity.samlservice.impl.RequestCacheImpl.java

/**
 * Singleton request cache implementation which allows
 *  - MAX_RETRIES for a single request
 *  - MAX_ENTRIES for a total number of requests being tracked
 *
 */