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.addthis.bundle.value.ValueMap.java

@JsonDeserialize(as = HashValueMap.class)
public interface ValueMap extends ValueObject, Map<String, ValueObject>, Iterable<ValueMapEntry> {

    @Override
    public default Iterator<ValueMapEntry> iterator() {
        return Iterators.transform(entrySet().iterator(), DelegatingValueMapEntry::new);

From source file ArrayMap.java

/**
 * An ArrayMap is a very inefficient map type that is more robust in dealing
 * with changes to its keys than other maps. HashMaps and TreeMaps may "lose"
 * the reference to a value if the key to that value changes in a way that
 * causes it to map or compare differently. ArrayMap has no such limitations,
 * but it pays for this feature in its speed with large data sets. Searching and

From source file com.chiorichan.http.HttpVariableMapper.java

public class HttpVariableMapper implements Map<String, Object> {
    class HeaderEntry extends SimpleEntry<String, Object> {
        HeaderEntry(String key, Object value) {
            super(key, value);
        }

From source file org.bambooframework.dao.impl.cfg.SpringBeanFactoryProxyMap.java

/**
 * @author Tom Baeyens
 */
public class SpringBeanFactoryProxyMap implements Map<Object, Object> {

    protected BeanFactory beanFactory;

From source file org.culturegraph.mf.morph.maps.AbstractReadOnlyMap.java

/**
 * @author "Markus Michael Geipel"
 *
 * @param <K>
 * @param <V>
 */

From source file org.mule.util.MapCombiner.java

/**
 * This allows a collection (list) of maps to be defined in Spring, via the "list" property, and
 * then presents all the maps as a single combine map at run time.  For efficiency the combination
 * of maps is done once and then cached.
 */
public class MapCombiner implements Map<Object, Object>, Serializable {

From source file org.eclipse.smarthome.automation.module.script.defaultscope.internal.ItemRegistryDelegate.java

/**
 * This is a helper class that can be added to script scopes. It provides easy access to the current item states.
 *
 * @author Kai Kreuzer - Initial contribution
 *
 */

From source file org.jtwig.beans.BeanResolver.java

/**
 * Created with IntelliJ IDEA.
 * User: Vitali Carbivnicii
 * Date: 2014-03-20
 * Time: 19:05
 */

From source file com.github.htfv.maven.plugins.buildconfigurator.core.el.PropertyAccessor.java

/**
 * Implements {@code prop} EL object for accessing properties with arbitrary
 * names.
 *
 * @author htfv (Aliaksei Lahachou)
 */

From source file com.neelo.glue.st.Tool.java

public abstract class Tool implements Map<String, String> {
    public abstract String get(Object key);

    public void clear() {
        throw new NotImplementedException();
    }