Example usage for java.util AbstractMap subclass-usage

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

Introduction

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

Usage

From source file ArrayMap.java

public class ArrayMap extends AbstractMap implements Cloneable, Serializable {

    static class Entry implements Map.Entry {
        protected Object key, value;

        public Entry(Object key, Object value) {

From source file ArrayMap.java

/**
 * @author akargapolov
 * @since: 05.05.2010
 */
public class ArrayMap<K, V> extends AbstractMap<K, V> {
    private ArrayList<K> _keys = new ArrayList<K>();

From source file com.tesobe.obp.transport.json.FieldDecoder.java

/**
 * @since 2016.11
 */
class FieldDecoder extends AbstractMap<String, Object> {
    FieldDecoder(JSONObject fields) {
        assert fields != null;

From source file MultiMap.java

public class MultiMap extends AbstractMap {

    private Map map;

    public MultiMap() {
        this(null);

From source file OrderedMap.java

/**
 * This is a simple Map implementation backed by a List of Map.Entry objects. 
 * It has the property that iterators return entries in the order in whick
 * they were inserted.
 * 
 * Operations involving searching, including get() and put(), have cost linear 

From source file ArrayMap.java

public class ArrayMap extends AbstractMap implements Cloneable, Serializable {

    static class Entry implements Map.Entry {
        protected Object key, value;

        public Entry(Object key, Object value) {

From source file SlowMap.java

public class SlowMap extends AbstractMap {

    private List keys = new ArrayList(), values = new ArrayList();

    public Object put(Object key, Object value) {
        Object result = get(key);

From source file SoftHashMap.java

public class SoftHashMap extends AbstractMap implements Map {

    private Set entrySet = null;
    private Map hash;
    private ReferenceQueue queue = new ReferenceQueue();

From source file me.ferrybig.javacoding.webmapper.util.JsonObjectMap.java

/**
 *
 * @author Fernando
 */
public class JsonObjectMap extends AbstractMap<String, Object> {

From source file SoftHashMap.java

/**
 * Map which stores items using SoftReference. Items can be garbage collected
 * and removed. It is not a general purpose cache, as it doesn't implement some
 * methods, and others not according to the map definition, to improve speed.
 *
 * @param <K> the key type