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 com.autobizlogic.abl.util.BeanMap.java

/**
 * A simplified BeanMap which uses our get and set methods.
 * Apache's beanutils is not sufficient for us because we want to be able
 * to get and set data members if get/set methods are not available.
 */
public class BeanMap implements Map<String, Object> {

From source file UCaseMap.java

/**
 * This Map stores it's keys as strings in upper case, null and duplicate keys are not allowed
 * Attempting to add a duplicate object in this map results in an IllegalArgumentException
 * Null values are not allowed
 *
 * @param <T> The type of the object stored in this UCaseMap

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 org.sapia.soto.state.ScopeMap.java

/**
 * @author Yanick Duchesne
 *         <dl>
 *         <dt><b>Copyright: </b>
 *         <dd>Copyright &#169; 2002-2003 <a
 *         href="http://www.sapia-oss.org">Sapia Open Source Software </a>. All

From source file SoftReferenceCache.java

/**
 * A thread-safe cache that keeps its values as {@link java.lang.ref.SoftReference}s so that the
 * cache is, in effect, managed by the JVM and kept as small as is required
 * 
 * @param <K> The type of key used to store values with
 * @param <V> The type of values to store

From source file org.mule.module.db.internal.result.statement.CloseableMap.java

/**
 * Defines a {@link Map} that will close any contained {@link Closeable} value
 */
public class CloseableMap<K, V> implements Map<K, V>, Closeable {

    protected static final Log logger = LogFactory.getLog(CloseableMap.class);

From source file com.mitchellbosecke.pebble.spring.context.Beans.java

/**
 * <p>
 * Special object made available to templates in Spring MVC applications in
 * order to access beans in the Application Context.
 * </p>
 *

From source file com.mitchellbosecke.pebble.spring4.context.Beans.java

/**
 * <p>
 * Special object made available to templates in Spring MVC applications in
 * order to access beans in the Application Context.
 * </p>
 *

From source file org.mule.el.context.AbstractMapContext.java

public abstract class AbstractMapContext<K, V> implements Map<K, V> {

    public void putAll(Map<? extends K, ? extends V> m) {
        for (Map.Entry<? extends K, ? extends V> entry : m.entrySet()) {
            put(entry.getKey(), entry.getValue());
        }

From source file io.github.moosbusch.permagon.configuration.builder.PermagonBuilder.java

/**
 *
 * @author Gunnar Kappei
 */
public interface PermagonBuilder<T> extends Builder<T>, Map<String, Object> {