KickJava   Java API By Example, From Geeks To Geeks.

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

  • org.apache.commons.collections.MultiHashMap
    <code>MultiHashMap</code> is the default implementation of the {@link org.apache.commons.collections.MultiMap MultiMap} interface. <p> A <code>MultiMap</code> is a Map with slightly different semantics. Putting a value into the map will add the value to a Collection a ...
  • org.eclipse.emf.common.util.BasicEMap
    A highly extensible map implementation.
  • org.apache.commons.collections.list.AbstractTestList
    Abstract test class for {@link java.util.List} methods and contracts. <p> To use, simply extend this class, and implement the {@link #makeEmptyList} method. <p> If your {@link List} fails one of these tests by design, you may still use this base set of cases. Simply override the test ...
  • 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 ...
  • edu.oswego.cs.dl.util.concurrent.ConcurrentReaderHashMap
    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 choic ...
  • 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.chain.impl.ContextBase
    <p>Convenience base class for {@link Context} implementations.</p> <p>In addition to the minimal functionality required by the {@link Context} interface, this class implements the recommended support for <em>Attribute-Property Transparency</p>. This is implemented b ...
  • org.enhydra.shark.utilities.SequencedHashMap
    A map of objects whose mapping entries are sequenced based on the order in which they were added. This data structure has fast <I>O(1)</I> search time, deletion time, and insertion time. <P>Although this map is sequenced, it cannot implement {@link java.util.List} because of in ...
  • org.apache.ojb.jdori.sql.OjbStorePMF
    PMF for OjbStore implementation @author thma
Popular Tags