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 com.novartis.opensource.yada.JSONParams.java

/**
 * A {@link LinkedHashMap} implementation for storing values passed to the YADA {@link Service}, by way of {@link YADARequest} 
 * in the url parameters or http POST content.  Naturally, {@code JSONParams} or {@code j} parameters map directly, but in fact, standard parameters
 * ({@code qname} or {@code q}, and {@code params} or {@code p}) are ultimately mapped to these objects as well. 
 * 
 * <p>This map contains YADA query names as keys, and {@link JSONParamsEntry} objects as values. Thus the structure is like the following:</p>

From source file com.atinternet.tracker.Configuration.java

/**
 * Hit configuration
 */
public class Configuration extends LinkedHashMap<String, Object> {

    /**

From source file ca.uhn.fhir.jpa.dao.SearchParameterMap.java

public class SearchParameterMap extends LinkedHashMap<String, List<List<? extends IQueryParameterType>>> {

    private static final long serialVersionUID = 1L;

    private Integer myCount;
    private EverythingModeEnum myEverythingMode = null;

From source file processing.app.helpers.PreferencesMap.java

@SuppressWarnings("serial")
public class PreferencesMap extends LinkedHashMap<String, String> {

    public PreferencesMap(Map<String, String> table) {
        super(table);
    }

From source file Bag.java

/**
 * This extension of HashMap support duplicate keys
 */
public class Bag extends LinkedHashMap {
    public List getValues(Object key) {
        if (super.containsKey(key)) {

From source file de.mpg.mpdl.inge.cone.util.TreeFragment.java

/**
 * A representation of a tree-like structure built of s-p-o triples.
 * 
 * @author franke (initial creation)
 * @author $Author$ (last modification)
 * @version $Revision$ $LastChangedDate$

From source file de.mpg.escidoc.services.cone.util.TreeFragment.java

/**
 * A representation of a tree-like structure built of s-p-o triples.
 * 
 * @author franke (initial creation)
 * @author $Author$ (last modification)
 * @version $Revision$ $LastChangedDate$

From source file org.apache.sysml.utils.PersistentLRUCache.java

/**
 * Simple utility to store double[], float[] and MatrixBlock in-memory.
 * It is designed to guard against OOM by using soft reference as well as max capacity. 
 * When memory is full or if capacity is exceeded, SimplePersistingCache stores the least recently used values into the local filesystem.
 * Assumption: GC occurs before an OutOfMemoryException, and GC requires prior finalize call.
 * 

From source file com.logsniffer.fields.FieldsMap.java

/**
 * Fields map of a log entry.
 * 
 * @author mbok
 * 
 */

From source file eu.dime.ps.dto.Resource.java

public class Resource extends LinkedHashMap<String, Object> {

    private static final long serialVersionUID = 1L;

    private static final Logger logger = LoggerFactory.getLogger(Resource.class);