KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > util > AbstractMap > Top Examples

  • org.apache.commons.collections.map.AbstractHashedMap
    An abstract implementation of a hash-based map which provides numerous points for subclasses to override. <p> This class implements all the features necessary for a subclass hash-based map. Key-value entries are stored in instances of the <code>HashEntry</code> class, which can b ...
  • org.apache.ojb.broker.util.ReferenceMap
    <p> Modified version of {@link org.apache.commons.collections.ReferenceMap}, using object identity for key comparison (). This class simply extended {@link org.apache.commons.collections.ReferenceMap} with an extra field "useSystemIdentity" which is initialized in constructor and is used eve ...
  • org.apache.commons.collections.ReferenceMap
    Hash-based {@link Map} implementation that allows mappings to be removed by the garbage collector.<p> When you construct a <code>ReferenceMap</code>, you can specify what kind of references are used to store the map's keys and values. If non-hard references are used, then the g ...
  • freemarker.template.utility.Collections12
    Implementation of missing JDK 1.3 collection features for JDK 1.2 @author Attila Szegedi @version $Id: Collections12.java,v 1.2 2004/11/27 14:49:57 ddekany Exp $
  • freemarker.ext.beans.HashAdapter
    @author Attila Szegedi @version $Id: HashAdapter.java,v 1.2 2005/06/12 19:03:04 szegedia Exp $
  • org.jboss.aop.util.SoftValueHashMap
    This Map will remove entries when the value in the map has been cleaned from garbage collection @version <tt>$Revision: 1.1 $</tt> @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
  • net.nutch.util.SoftHashMap
    A Map which uses {@link SoftReference}s to keep track of values. <p> This class is suitable for use as a best-effort caching mechanism. Under the hood, it is simply a {@link HashMap}, which wraps it's values with SoftReference</code>s. Unlike <code>HashMap</code>, howeve ...
  • org.apache.commons.configuration.ConfigurationMap
    <p>The <code>ConfigurationMap</code> wraps a configuration-collection {@link org.apache.commons.configuration.Configuration} instance to provide a <code>Map</code> interface.</p> @todo This implementation is incomplete. @author <a HREF="mailto:ricardo.gladw ...
  • gnu.trove.decorator.TByteDoubleHashMapDecorator
    Wrapper class to make a TByteDoubleHashMap conform to the <tt>java.util.Map</tt> API. This class simply decorates an underlying TByteDoubleHashMap and translates the Object-based APIs into their Trove primitive analogs. <p> Note that wrapping and unwrapping primitive values is e ...
  • com.opensymphony.webwork.portlet.SessionMap
    @author <a HREF="mailto:hu_pengfei@yahoo.com.cn">Henry Hu </a> @since 2005-7-18
Popular Tags