KickJava   Java API By Example, From Geeks To Geeks.

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

  • org.apache.commons.collections.DoubleOrderedMap
    Red-Black tree-based implementation of Map. This class guarantees that the map will be in both ascending key order and ascending value order, sorted according to the natural order for the key's and value's classes. <p> This Map is intended for applications that need to be able to look up a k ...
  • org.apache.commons.collections.bidimap.TreeBidiMap
    Red-Black tree-based implementation of BidiMap where all objects added implement the <code>Comparable</code> interface. <p> This class guarantees that the map will be in both ascending key order and ascending value order, sorted according to the natural order for the key's and va ...
  • 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.myfaces.context.servlet.AbstractAttributeMap
    Helper Map implementation for use with different Attribute Maps. @author Anton Koinov (latest modification by $Author: matze $) @version $Revision: 1.9 $ $Date: 2004/10/13 11:51:00 $ $Log: AbstractAttributeMap.java,v $ Revision 1.9 2004/10/13 11:51:00 matze renamed packages to org.apache Revi ...
  • org.apache.commons.collections.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.commons.collections.map.SingletonMap
    A <code>Map</code> implementation that holds a single item and is fixed size. <p> The single key/value pair is specified at creation. The map is fixed size so any action that would change the size is disallowed. However, the <code>put</code> or <code>setValue< ...
  • gnu.trove.decorator.TDoubleByteHashMapDecorator
    Wrapper class to make a TDoubleByteHashMap conform to the <tt>java.util.Map</tt> API. This class simply decorates an underlying TDoubleByteHashMap and translates the Object-based APIs into their Trove primitive analogs. <p> Note that wrapping and unwrapping primitive values is e ...
  • org.jboss.util.collection.ListSet
    A thin wrapper around a <code>List</code> transforming it into a modifiable <code>Set</code>. @version <tt>$Revision: 1.5.6.1 $</tt> @author <a HREF="mailto:jason@planet57.com">Jason Dillon</a>
  • org.apache.ojb.jdori.sql.OjbStorePMF
    PMF for OjbStore implementation @author thma
Popular Tags