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.github.rwhogg.git_vcr.review.Changes.java

/**
 * Changes is just shorthand for Map<Class, ImmutablePair<List<String>, List<String>>>
 */
@SuppressWarnings({ "serial", "rawtypes" })
public final class Changes extends HashMap<Class, ImmutablePair<List<String>, List<String>>> {
}

From source file ObjectToSet.java

/**
 * An <code>ObjectToSet</code> provides a {@link java.util.Map} from
 * arbitrary objects to objects of class {@link java.util.Set}.
 * In addition to methods inherited from {@link java.util.Map},
 * there are methods to add members to a set value and get
 * set values directly.

From source file com.parse.ParseOperationSet.java

/** package */
class ParseOperationSet extends HashMap<String, ParseFieldOperation> {
    private static final long serialVersionUID = 1L;

    private static final String REST_KEY_IS_SAVE_EVENTUALLY = "__isSaveEventually";
    private static final String REST_KEY_UUID = "__uuid";

From source file org.webservice.fotolia.FotoliaSearchQuery.java

public class FotoliaSearchQuery extends HashMap<String, String> {
    /**
     * Constructor
     *
     * @param  words
     */

From source file annis.service.objects.AnnisTokenImpl.java

public class AnnisTokenImpl extends HashMap<String, String> implements AnnisToken {

    private long id;
    private String text;
    private long left;
    private long right;

From source file nl.nn.adapterframework.core.PipeLineSessionBase.java

/**
 * Basic implementation of <code>IPipeLineSession</code>.
 * 
 * @author  Johan Verrips IOS
 * @since   version 3.2.2
 */

From source file org.apache.sqoop.util.SqlTypeMap.java

/**
 * Using java.utils.HashMap to store primitive data types such as int can
 * be unsafe because auto-unboxing a null value in the map can cause a NPE.
 *
 * SqlTypeMap is meant to be safer because it provides validation for arguments
 * and fails fast with informative messages if invalid arguments are given.

From source file com.handu.open.dubbo.monitor.support.CommonResponse.java

/**
 * 
 *
 * @author Zhiguo.Chen on 30/6/15.
 */
public class CommonResponse extends HashMap<String, Object> {

From source file org.meruvian.yama.web.security.oauth.DefaultOauthApplications.java

/**
 * @author Dian Aditya
 *
 */
@Component
public class DefaultOauthApplications extends HashMap<String, Application> {

From source file com.piusvelte.mosaic.android.Message.java

public class Message extends HashMap<String, String> {

    private static final long serialVersionUID = 1L;

    public enum Properties {
        id, body, latitude, longitude, radius, expiry, created, userid, nickname;