bak.pcj.set

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Development » PCJ » bak.pcj.set 
bak.pcj.set
Package description: bak.pcj.set Provides primitive set classes.
Java Source File NameTypeComment
AbstractBooleanSet.javaClass This class represents an abstract base for implementing sets of boolean values.
AbstractByteSet.javaClass This class represents an abstract base for implementing sets of byte values.
AbstractCharSet.javaClass This class represents an abstract base for implementing sets of char values.
AbstractDoubleSet.javaClass This class represents an abstract base for implementing sets of double values.
AbstractFloatSet.javaClass This class represents an abstract base for implementing sets of float values.
AbstractIntSet.javaClass This class represents an abstract base for implementing sets of int values.
AbstractLongSet.javaClass This class represents an abstract base for implementing sets of long values.
AbstractShortSet.javaClass This class represents an abstract base for implementing sets of short values.
BooleanDirectSet.javaClass This class represents sets of boolean values.
BooleanSet.javaInterface This interface defines sets of boolean values.
BooleanSortedSet.javaInterface This interface defines extends the BooleanSet interface to define sorted sets.
ByteBitSet.javaClass This class represents bit array based sets of byte values.
ByteChainedHashSet.javaClass This class represents chained hash table based sets of byte values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
ByteOpenHashSet.javaClass This class represents open addressing hash table based sets of byte values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
ByteRange.javaClass This class represents ranges of consecutive byte values.

Design note: Empty ranges cannot exist.

ByteRangeSet.javaClass This class represents range based sets of byte values. The implementation is optimized for cases where most set elements fall into ranges of consecutive byte values.

Implementation of ByteSortedSet is supported from PCJ 1.2.

ByteSet.javaInterface This interface defines sets of byte values.
ByteSortedSet.javaInterface This interface defines extends the ByteSet interface to define sorted sets.
CharBitSet.javaClass This class represents bit array based sets of char values.
CharChainedHashSet.javaClass This class represents chained hash table based sets of char values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
CharOpenHashSet.javaClass This class represents open addressing hash table based sets of char values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
CharRange.javaClass This class represents ranges of consecutive char values.

Design note: Empty ranges cannot exist.

CharRangeSet.javaClass This class represents range based sets of char values. The implementation is optimized for cases where most set elements fall into ranges of consecutive char values.

Implementation of CharSortedSet is supported from PCJ 1.2.

CharSet.javaInterface This interface defines sets of char values.
CharSortedSet.javaInterface This interface defines extends the CharSet interface to define sorted sets.
DoubleChainedHashSet.javaClass This class represents chained hash table based sets of double values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
DoubleOpenHashSet.javaClass This class represents open addressing hash table based sets of double values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
DoubleSet.javaInterface This interface defines sets of double values.
DoubleSortedSet.javaInterface This interface defines extends the DoubleSet interface to define sorted sets.
FloatChainedHashSet.javaClass This class represents chained hash table based sets of float values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
FloatOpenHashSet.javaClass This class represents open addressing hash table based sets of float values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
FloatSet.javaInterface This interface defines sets of float values.
FloatSortedSet.javaInterface This interface defines extends the FloatSet interface to define sorted sets.
IntBitSet.javaClass This class represents bit array based sets of int values.
IntChainedHashSet.javaClass This class represents chained hash table based sets of int values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
IntOpenHashSet.javaClass This class represents open addressing hash table based sets of int values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
IntRange.javaClass This class represents ranges of consecutive int values.

Design note: Empty ranges cannot exist.

IntRangeSet.javaClass This class represents range based sets of int values. The implementation is optimized for cases where most set elements fall into ranges of consecutive int values.

Implementation of IntSortedSet is supported from PCJ 1.2.

IntSet.javaInterface This interface defines sets of int values.
IntSortedSet.javaInterface This interface defines extends the IntSet interface to define sorted sets.
LongChainedHashSet.javaClass This class represents chained hash table based sets of long values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
LongOpenHashSet.javaClass This class represents open addressing hash table based sets of long values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
LongRange.javaClass This class represents ranges of consecutive long values.

Design note: Empty ranges cannot exist.

LongRangeSet.javaClass This class represents range based sets of long values. The implementation is optimized for cases where most set elements fall into ranges of consecutive long values.

Implementation of LongSortedSet is supported from PCJ 1.2.

LongSet.javaInterface This interface defines sets of long values.
LongSortedSet.javaInterface This interface defines extends the LongSet interface to define sorted sets.
ShortBitSet.javaClass This class represents bit array based sets of short values.
ShortChainedHashSet.javaClass This class represents chained hash table based sets of short values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
ShortOpenHashSet.javaClass This class represents open addressing hash table based sets of short values. Unlike the Java Collections HashSet instances of this class are not backed up by a map.
ShortRange.javaClass This class represents ranges of consecutive short values.

Design note: Empty ranges cannot exist.

ShortRangeSet.javaClass This class represents range based sets of short values. The implementation is optimized for cases where most set elements fall into ranges of consecutive short values.

Implementation of ShortSortedSet is supported from PCJ 1.2.

ShortSet.javaInterface This interface defines sets of short values.
ShortSortedSet.javaInterface This interface defines extends the ShortSet interface to define sorted sets.
UnmodifiableBooleanSet.javaClass This class represents unmodifiable sets of boolean values.
UnmodifiableByteSet.javaClass This class represents unmodifiable sets of byte values.
UnmodifiableCharSet.javaClass This class represents unmodifiable sets of char values.
UnmodifiableDoubleSet.javaClass This class represents unmodifiable sets of double values.
UnmodifiableFloatSet.javaClass This class represents unmodifiable sets of float values.
UnmodifiableIntSet.javaClass This class represents unmodifiable sets of int values.
UnmodifiableLongSet.javaClass This class represents unmodifiable sets of long values.
UnmodifiableShortSet.javaClass This class represents unmodifiable sets of short values.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.