Example usage for org.apache.commons.collections.map AbstractHashedMap subclass-usage

List of usage examples for org.apache.commons.collections.map AbstractHashedMap subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections.map AbstractHashedMap subclass-usage.

Usage

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

/**
 * A case-insensitive <code>Map</code>.
 * <p/>
 * As entries are added to the map, keys hash values are lowercase hash codes of the key.  the
 * Real key case is preserved.
 * <p/>

From source file com.panet.imeta.core.hash.ByteArrayHashMap.java

public class ByteArrayHashMap extends AbstractHashedMap {
    private RowMetaInterface keyMeta;

    /**
     * Constructs an empty <tt>ByteArrayHashMap</tt> with the specified initial
     * capacity and load factor.

From source file org.apache.flink.api.common.operators.util.JoinHashMap.java

@Internal
public class JoinHashMap<BT> extends AbstractHashedMap {

    private final TypeSerializer<BT> buildSerializer;

    private final TypeComparator<BT> buildComparator;

From source file org.pentaho.di.core.hash.ByteArrayHashMap.java

public class ByteArrayHashMap extends AbstractHashedMap {
    private RowMetaInterface keyMeta;

    /**
     * Constructs an empty <tt>ByteArrayHashMap</tt> with the specified initial capacity and load factor.
     *