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 org.zanata.WebAssetsConfiguration.java

/**
 * Utility component for accessing zanata-assets resources from JSF/HTML page.
 *
 * Usage in JSF/HTML page: <link rel="shortcut icon" href="#{assets['img/logo/logo.ico']}"/>
 * Rendered URL from example above is: {@link #DEFAULT_WEB_ASSETS_URL}/img/logo/logo.ico
 *

From source file nl.strohalm.cyclos.utils.EntityWithCustomFieldsWrapper.java

/**
 * Wrapper around an entity with custom fields, allowing, through a Map interface, access to properties and custom fields
 */
public class EntityWithCustomFieldsWrapper extends AbstractMap<String, Object> {
    /**
     * Entry implementation for Wrapper

From source file com.zauberlabs.commons.mom.internal.AttributesMap.java

/**
 * A delayed map that projects an object into a map. The logic is the following:
 * Null attributes are converted into null, mappeable arrays object attributes
 * are converted into collections of maps, mappeable object attributes are
 * converted into maps, and any other attribute is left unchanged.
 */

From source file edu.scripps.fl.collections.FuzzyMap.java

/**
 * A SortedMap implementation for dealing with fuzzy keys. A binary search is used to find the closest key to the input.
 * 
 * @author Mark Southern (southern at scripps dot edu). 
 */
public class FuzzyMap<K, V> extends AbstractMap<K, V> implements SortedMap<K, V> {

From source file org.apache.struts2.portlet.PortletRequestMap.java

/**
 * A simple implementation of the {@link java.util.Map} interface to handle a collection of request attributes.
 *
 */
public class PortletRequestMap extends AbstractMap {

From source file org.apache.struts2.portlet.PortletSessionMap.java

/**
 * A simple implementation of the {@link java.util.Map} interface to handle a collection of portlet session
 * attributes. The {@link #entrySet()} method enumerates over all session attributes and creates a Set of entries.
 * Note, this will occur lazily - only when the entry set is asked for.
 *
 */

From source file CaseInsensitiveMap.java

/**
 * An mapped collection where the keys are always strings and access to values is case-insensitive. The case of keys in
 * the map is <em>maintained</em>, but on any access to a key (directly or indirectly), all key comparisons are
 * performed in a case-insensitive manner. The map implementation is intended to support a reasonably finite number
 * (dozens or hundreds, not thousands or millions of key/value pairs. Unlike HashMap, it is based on a sorted list of
 * entries rather than hash bucket. It is also geared towards a largely static map, one that is created and then used

From source file org.cloudfoundry.identity.varz.MBeanMap.java

@SuppressWarnings("restriction")
public class MBeanMap extends AbstractMap<String, Object> {

    private static Log logger = LogFactory.getLog(MBeanMap.class);

    private Map<String, Object> map = new HashMap<String, Object>();

From source file org.cloudfoundry.identity.uaa.varz.MBeanMap.java

@SuppressWarnings("restriction")
public class MBeanMap extends AbstractMap<String, Object> {

    private static Log logger = LogFactory.getLog(MBeanMap.class);

    private Map<String, Object> map = new HashMap<String, Object>();

From source file org.apache.cocoon.forms.util.ContainerWidgetAsMap.java

/**
 * A <code>Map</code> view of a container widget, keys being children names and values either
 * maps (for container children), objects (for terminal children) or lists (for repeaters).
 * <p>
 * The returned map is non-modifiable, except using the <code>put()</code> method, which much
 * refer to an existing child widget, and <code>putAll(Map)</code> that will silently ignore keys