Example usage for java.util HashMap subclass-usage

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

Introduction

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

Usage

From source file com.comcast.cats.EnvironmentFactory.java

/**
 * A map which keeps all the CatsEnvironment instances.
 * 
 * @author subinsugunan
 * 
 * @see CatsEnvironment

From source file ch.cyberduck.core.Acl.java

public final class Acl extends HashMap<Acl.User, Set<Acl.Role>> {
    private static final long serialVersionUID = 372192161904802600L;

    public static final Acl EMPTY = new Acl();

    private transient CanonicalUser owner;

From source file org.apache.lens.cube.parse.PruneCauses.java

public class PruneCauses<T> extends HashMap<T, List<CandidateTablePruneCause>> {
    @Getter(lazy = true)
    private final HashMap<CandidateTablePruneCause, List<T>> reversed = reverse();
    @Getter(lazy = true)
    private final HashMap<String, List<CandidateTablePruneCause>> compact = computeCompact();
    @Getter(lazy = true)

From source file edu.indiana.lib.twinpeaks.util.CaseBlindHashMap.java

/**
 * CaseBlindHashMap - a HashMap extension, using <code>String</code>s as
 * key values.
 * <p>
 * Internally, keys are case insensitive: <code>ABC</code> = <code>abc</code>.
 * <p>

From source file org.ow2.chameleon.core.ChameleonConfiguration.java

/**
 * Manages the configuration of the OSGi framework and of the chameleon container and services.
 *
 * @author The OW2 Chameleon Team
 * @version $Id: 1.0.4 $Id
 */

From source file net.amigocraft.mpt.json.JSONPrettyPrinter.java

public class JSONPrettyPrinter extends HashMap {

    private static final long serialVersionUID = -9168577804652055206L;

    static int column = 0;

From source file org.apache.samza.config.KafkaConsumerConfig.java

/**
 * The configuration class for KafkaConsumer
 */
public class KafkaConsumerConfig extends HashMap<String, Object> {

    public static final Logger LOG = LoggerFactory.getLogger(KafkaConsumerConfig.class);

From source file importer.Archive.java

/**
 * A set of CorCode or CorTex files, each a version of the same work, 
 * indexed by the group-path/shortname separated by "/"
 * @author desmond
 */
public class Archive extends HashMap<String, char[]> {

From source file glluch.com.ontotaxoseeker.Terms.java

/**
 * A class for save a list of terms and its counts. 
 * @author Guillem LLuch Moll
 */
public class Terms extends HashMap<Term, Integer> implements java.io.Serializable {

From source file WeakValueHashMap.java

/**
 * A WeakValueHashMap is implemented as a HashMap that maps keys to
 * WeakValues.  Because we don't have access to the innards of the
 * HashMap, we have to wrap/unwrap value objects with WeakValues on
 * every operation.  Fortunately WeakValues are small, short-lived
 * objects, so the added allocation overhead is tolerable. This