List of usage examples for java.util Map interface-usage
From source file com.jaxio.celerio.model.Attribute.java
/**
* JPA Attribute meta information.
*/
@Component
@Scope(SCOPE_PROTOTYPE)
@Getter
From source file org.broadinstitute.sting.utils.variantcontext.VariantJEXLContext.java
/**
* this is an implementation of a Map of JexlVCMatchExp to true or false values. It lazy initializes each value
* as requested to save as much processing time as possible.
*
* Compatible with JEXL 1.1 (this code will be easier if we move to 2.0, all of the functionality can go into the
* JexlContext's get()
From source file com.jaxio.celerio.model.Entity.java
/**
* JPA Entity meta information.
*/
@Component
@Scope(SCOPE_PROTOTYPE)
@Slf4j
From source file com.moviejukebox.model.Library.java
public class Library implements Map<String, Movie> { private static final Logger LOG = LoggerFactory.getLogger(Library.class); // Constants public static final String TV_SERIES = "TVSeries"; public static final String SET = "Set";
From source file com.opensymphony.oscache.base.algorithm.AbstractConcurrentReadCache.java
/**
* A version of Hashtable that supports mostly-concurrent reading, but exclusive writing.
* Because reads are not limited to periods
* without writes, a concurrent reader policy is weaker than a classic
* reader/writer policy, but is generally faster and allows more
* concurrency. This class is a good choice especially for tables that
From source file com.xwtec.xwserver.util.json.JSONObject.java
/**
* A JSONObject is an unordered collection of name/value pairs. Its external
* form is a string wrapped in curly braces with colons between the names and
* values, and commas between the values and names. The internal form is an
* object having <code>get</code> and <code>opt</code> methods for accessing
* the values by name, and <code>put</code> methods for adding or replacing
From source file net.sf.json.JSONObject.java
/**
* A JSONObject is an unordered collection of name/value pairs. Its external
* form is a string wrapped in curly braces with colons between the names and
* values, and commas between the values and names. The internal form is an
* object having <code>get</code> and <code>opt</code> methods for accessing
* the values by name, and <code>put</code> methods for adding or replacing
From source file ArraySet.java
class ArrayMap<K, V> extends AbstractMap<K, V> implements Map<K, V>, Cloneable, Externalizable { private static final long serialVersionUID = 1L; /** * The default initial capacity.
From source file org.openTwoFactor.clientExt.net.sf.json.JSONObject.java
/**
* A JSONObject is an unordered collection of name/value pairs. Its external
* form is a string wrapped in curly braces with colons between the names and
* values, and commas between the values and names. The internal form is an
* object having <code>get</code> and <code>opt</code> methods for accessing
* the values by name, and <code>put</code> methods for adding or replacing
From source file WeakValuedHashMap.java
/**
* A Map that references its values and can be used as a simple cache.
* Instances are not thread-safe and must be wrapped with
* Collections.synchronizedMap to be made thread-safe.
* <p>
* Note: Referenced entries may be automatically removed during