List of usage examples for java.util AbstractMap subclass-usage
From source file com.github.helenusdriver.driver.impl.PersistedMap.java
/**
* The <code>PersistedMap</code> class provides a {@link Map} implementation
* suitable to hold persisted values.
*
* @copyright 2015-2015 The Helenus Driver Project Authors
*
From source file BinaryMap.java
/**
* The <code>BinaryMap</code> class implements a map from objects to
* integer objects where the only value is the integer with value 1.
* Instances of this class are typically returned by boolean feature
* extractors, who return a map with only 1 values, because the 0
* values are implicit.
From source file IntHashMap.java
/**
* A Map that accepts int or Integer keys only. The implementation is based on
* <code>java.util.HashMap</code>. IntHashMap is about 25% faster.
*
* @see java.util.HashMap
*/
From source file WeakValueMap.java
/**
* A <code>java.util.Map</code> implementation using reference values.
* <p>
* The values are stored in the map as references.
* If the garbage collector clears the reference, the corresponding key is
* automatically removed from the map.
From source file org.elasticsearch.common.collect.CopyOnWriteHashMap.java
/**
* An immutable map whose writes result in a new copy of the map to be created.
*
* This is essentially a hash array mapped trie: inner nodes use a bitmap in
* order to map hashes to slots by counting ones. In case of a collision (two
* values having the same 32-bits hash), a leaf node is created which stores
From source file StringMap.java
/** Map implementation Optimized for Strings keys..
* This String Map has been optimized for mapping small sets of
* Strings where the most frequently accessed Strings have been put to
* the map first.
*
* It also has the benefit that it can look up entries by substring or
From source file StringMap.java
/** Map implementation Optimized for Strings keys..
* This String Map has been optimized for mapping small sets of
* Strings where the most frequently accessed Strings have been put to
* the map first.
*
* It also has the benefit that it can look up entries by substring or
From source file StringMap.java
/** Map like class of Strings to Objects.
* This String Map has been optimized for mapping small sets of
* Strings where the most frequently accessed Strings have been put to
* the map first.
*
* It also has the benefit that it can look up entries by substring or
From source file org.t2framework.commons.util.ArrayMap.java
/**
* Array map.
*
* @author shot
*
* @param <K>
From source file FileBaseDataMap.java
/**
* To manage files using a key-value.<br>
* A small amount of memory usage, so File.<br>
* Memory capacity can be managed independently of the number of data.<br>
*
* Inside, you are using a CoreFileBaseDataMap.<br>