gnu.trove

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » HTML Parser » HTMLParser2 » gnu.trove 
gnu.trove
Java Source File NameTypeComment
HashFunctions.javaClass Provides various hash functions.
PrimeFinder.javaClass Used to keep hash table capacities prime numbers. Not of interest for users; only for implementors of hashtables.

Choosing prime numbers as hash table capacities is a good idea to keep them working fast, particularly under hash table expansions.

However, JDK 1.2, JGL 3.1 and many other toolkits do nothing to keep capacities prime.

SerializationProcedure.javaClass Implementation of the variously typed procedure interfaces that supports writing the arguments to the procedure out on an ObjectOutputStream. In the case of two-argument procedures, the arguments are written out in the order received.

Any IOException is trapped here so that it can be rethrown in a writeObject method.

Created: Sun Jul 7 00:14:18 2002
author:
   Eric D.
THash.javaClass Base class for hashtables that use open addressing to resolve collisions. Created: Wed Nov 28 21:11:16 2001
author:
   Eric D.
TIntArrayList.javaClass A resizable, array-backed list of int primitives. Created: Sat Dec 29 14:21:12 2001
author:
   Eric D.
TIntFunction.javaInterface Interface for functions that accept and return one int primitive. Created: Mon Nov 5 22:19:36 2001
author:
   Eric D.
TIntHash.javaClass An open addressed hashing implementation for int primitives. Created: Sun Nov 4 08:56:06 2001
author:
   Eric D.
TIntHashingStrategy.javaInterface Interface to support pluggable hashing strategies in maps and sets. Implementors can use this interface to make the trove hashing algorithms use an optimal strategy when computing hashcodes. Created: Sun Nov 4 08:56:06 2001
author:
   Eric D.
TIntHashSet.javaClass An open addressed set implementation for int primitives.
author:
   Eric D.
TIntHashSetDecorator.javaClass Wrapper class to make a TIntHashSet conform to the java.util.Set API. This class simply decorates an underlying TIntHashSet and translates the Object-based APIs into their Trove primitive analogs.

Note that wrapping and unwrapping primitive values is extremely inefficient.

TIntIntHashMap.javaClass An open addressed Map implementation for int keys and int values. Created: Sun Nov 4 08:52:45 2001
author:
   Eric D.
TIntIntIterator.javaClass Iterator for maps of type int and int.

The iterator semantics for Trove's primitive maps is slightly different from those defined in java.util.Iterator, but still well within the scope of the pattern, as defined by Gamma, et al.

This iterator does not implicitly advance to the next entry when the value at the current position is retrieved.

TIntIntProcedure.javaInterface Interface for procedures that take two parameters of type int and int. Created: Mon Nov 5 22:03:30 2001
author:
   Eric D.
TIntIterator.javaClass Iterator for int collections.
author:
   Eric D.
TIntObjectHashMap.javaClass An open addressed Map implementation for int keys and Object values. Created: Sun Nov 4 08:52:45 2001
author:
   Eric D.
TIntObjectIterator.javaClass Iterator for maps of type int and Object.

The iterator semantics for Trove's primitive maps is slightly different from those defined in java.util.Iterator, but still well within the scope of the pattern, as defined by Gamma, et al.

This iterator does not implicitly advance to the next entry when the value at the current position is retrieved.

TIntObjectProcedure.javaInterface Interface for procedures that take two parameters of type int and Object. Created: Mon Nov 5 22:03:30 2001
author:
   Eric D.
TIntProcedure.javaInterface Interface for procedures with one int parameter. Created: Mon Nov 5 21:45:49 2001
author:
   Eric D.
TIterator.javaClass Abstract iterator class for THash implementations.
TObjectFunction.javaInterface Interface for functions that accept and return one Object reference. Created: Mon Nov 5 22:19:36 2001
author:
   Eric D.
TObjectProcedure.javaInterface Interface for procedures with one Object parameter. Created: Mon Nov 5 21:45:49 2001
author:
   Eric D.
TPrimitiveHash.javaClass The base class for hashtables of primitive values.
TPrimitiveIterator.javaClass Implements all iterator functions for the hashed object set. Subclasses may override objectAtIndex to vary the object returned by calls to next() (e.g.
w_w___w___.j_a_v___a_2_s___.__c__om___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.