Example usage for java.util Map interface-usage

List of usage examples for java.util Map interface-usage

Introduction

In this page you can find the example usage for java.util Map interface-usage.

Usage

From source file io.github.moosbusch.permagon.configuration.builder.spi.AbstractPermagonBuilder.java

/**
 *
 * @author Gunnar Kappei
 */
@DefaultProperty("properties")
public abstract class AbstractPermagonBuilder implements Map<String, Object>, PermagonBuilder<Object> {

From source file SoftValuedHashMap.java

/**
 * A Map that references its values and can be used as a simple cache.
 * Instances are not thread-safe and must be wrapped with
 * Collections.synchronizedMap to be made thread-safe.
 * <p>
 * Note: Referenced entries may be automatically removed during

From source file DNSUtil.java

/**
 * A specialized Map that is size-limited (using an LRU algorithm) and
 * has an optional expiration time for cache items. The Map is thread-safe.<p>
 *
 * The algorithm for cache is as follows: a HashMap is maintained for fast
 * object lookup. Two linked lists are maintained: one keeps objects in the

From source file com.taobao.weex.dom.WXAttr.java

/**
 * store value of component attribute
 *
 */
public class WXAttr implements Map<String, Object>, Cloneable {

From source file com.taobao.weex.dom.WXStyle.java

/**
 * Store value of component style
 *
 */
public class WXStyle implements Map<String, Object>, Cloneable {

From source file org.sakaiproject.util.ResourceLoader.java

@SuppressWarnings({ "rawtypes" })
abstract class DummyMap implements Map {
    public void clear() {
        throw new UnsupportedOperationException();
    }

From source file org.infoscoop.request.ProxyRequest.java

class HeadersMap implements Map<String, List<String>> {
    private static final long serialVersionUID = "org.infoscoop.request.RequestHeadersMap".hashCode();

    private Map headers = new HashMap();

    public void clear() {

From source file com.gargoylesoftware.htmlunit.html.DomElement.java

/**
 * The {@link NamedNodeMap} to store the node attributes.
 */
class NamedAttrNodeMapImpl implements Map<String, DomAttr>, NamedNodeMap, Serializable {
    public static final NamedAttrNodeMapImpl EMPTY_MAP = new NamedAttrNodeMapImpl();