org.apache.commons.collections.primitives

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 » Library » Apache commons primitives 1.0 » org.apache.commons.collections.primitives 
org.apache.commons.collections.primitives
Package Documentation for org.apache.commons.collections.primitives

Collections of primitive values. Generally these extensions offer memory and performance improvements over the Object wrapped alternative.

The package provides versions of the major collections framework interfaces (Collection, List, Map, Set, etc.) and their helpers (Iterator, ListIterator, etc) for each primitive type, and various concrete implementations of these.

Also see {@link org.apache.commons.collections.primitives.adapters}.

Java Source File NameTypeComment
AbstractByteCollection.javaClass Abstract base class for ByteCollection s.

Read-only subclasses must override AbstractByteCollection.iterator and AbstractByteCollection.size .

AbstractCharCollection.javaClass Abstract base class for CharCollection s.

Read-only subclasses must override AbstractCharCollection.iterator and AbstractCharCollection.size .

AbstractDoubleCollection.javaClass Abstract base class for DoubleCollection s.

Read-only subclasses must override AbstractDoubleCollection.iterator and AbstractDoubleCollection.size .

AbstractFloatCollection.javaClass Abstract base class for FloatCollection s.

Read-only subclasses must override AbstractFloatCollection.iterator and AbstractFloatCollection.size .

AbstractIntCollection.javaClass Abstract base class for IntCollection s.

Read-only subclasses must override AbstractIntCollection.iterator and AbstractIntCollection.size .

AbstractLongCollection.javaClass Abstract base class for LongCollection s.

Read-only subclasses must override AbstractLongCollection.iterator and AbstractLongCollection.size .

AbstractShortCollection.javaClass Abstract base class for ShortCollection s.

Read-only subclasses must override AbstractShortCollection.iterator and AbstractShortCollection.size .

AllTestSuite.javaClass Test all the packages.
ArrayByteList.javaClass An ByteList backed by an array of bytes.
ArrayCharList.javaClass An CharList backed by an array of chars.
ArrayDoubleList.javaClass An DoubleList backed by an array of doubles.
ArrayFloatList.javaClass An FloatList backed by an array of floats.
ArrayIntList.javaClass An IntList backed by an array of ints.
ArrayLongList.javaClass An LongList backed by an array of longs.
ArrayShortList.javaClass An ShortList backed by an array of shorts.
ArrayUnsignedByteList.javaClass A ShortList backed by an array of unsigned byte values. This list stores short values in the range [ ArrayUnsignedByteList.MIN_VALUE , ArrayUnsignedByteList.MAX_VALUE ] in 8-bits per element.
ArrayUnsignedIntList.javaClass An IntList backed by an array of unsigned int values. This list stores int values in the range [ ArrayUnsignedIntList.MIN_VALUE 0 , ArrayUnsignedIntList.MAX_VALUE 65535 ] in 16-bits per element.
ArrayUnsignedShortList.javaClass An IntList backed by an array of unsigned short values. This list stores int values in the range [ ArrayUnsignedShortList.MIN_VALUE 0 , ArrayUnsignedShortList.MAX_VALUE 65535 ] in 16-bits per element.
ByteCollection.javaInterface A collection of byte values.
ByteCollections.javaClass This class consists exclusively of static methods that operate on or return ByteCollections.
ByteIterator.javaInterface An iterator over byte values.
ByteList.javaInterface An ordered collection of byte values.
ByteListIterator.javaInterface A bi-directional iterator over byte values.
CharCollection.javaInterface A collection of char values.
CharCollections.javaClass This class consists exclusively of static methods that operate on or return CharCollections.
CharIterator.javaInterface An iterator over char values.
CharList.javaInterface An ordered collection of char values.
CharListIterator.javaInterface A bi-directional iterator over char values.
DoubleCollection.javaInterface A collection of double values.
DoubleCollections.javaClass This class consists exclusively of static methods that operate on or return DoubleCollections.
DoubleIterator.javaInterface An iterator over double values.
DoubleList.javaInterface An ordered collection of double values.
DoubleListIterator.javaInterface A bi-directional iterator over double values.
FloatCollection.javaInterface A collection of float values.
FloatCollections.javaClass This class consists exclusively of static methods that operate on or return FloatCollections.
FloatIterator.javaInterface An iterator over float values.
FloatList.javaInterface An ordered collection of float values.
FloatListIterator.javaInterface A bi-directional iterator over float values.
IntCollection.javaInterface A collection of int values.
IntCollections.javaClass This class consists exclusively of static methods that operate on or return IntCollections.
IntIterator.javaInterface An iterator over int values.
IntList.javaInterface An ordered collection of int values.
IntListIterator.javaInterface A bi-directional iterator over int values.
LongCollection.javaInterface A collection of long values.
LongCollections.javaClass This class consists exclusively of static methods that operate on or return LongCollections.
LongIterator.javaInterface An iterator over long values.
LongList.javaInterface An ordered collection of long values.
LongListIterator.javaInterface A bi-directional iterator over long values.
PackageTestSuite.javaClass Test this package.
RandomAccessByteList.javaClass Abstract base class for ByteList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessByteList.get and RandomAccessByteList.size .

RandomAccessCharList.javaClass Abstract base class for CharList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessCharList.get and RandomAccessCharList.size .

RandomAccessDoubleList.javaClass Abstract base class for DoubleList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessDoubleList.get and RandomAccessDoubleList.size .

RandomAccessFloatList.javaClass Abstract base class for FloatList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessFloatList.get and RandomAccessFloatList.size .

RandomAccessIntList.javaClass Abstract base class for IntList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessIntList.get and RandomAccessIntList.size .

RandomAccessLongList.javaClass Abstract base class for LongList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessLongList.get and RandomAccessLongList.size .

RandomAccessShortList.javaClass Abstract base class for ShortList s backed by random access structures like arrays.

Read-only subclasses must override RandomAccessShortList.get and RandomAccessShortList.size .

ShortCollection.javaInterface A collection of short values.
ShortCollections.javaClass This class consists exclusively of static methods that operate on or return ShortCollections.
ShortIterator.javaInterface An iterator over short values.
ShortList.javaInterface An ordered collection of short values.
ShortListIterator.javaInterface A bi-directional iterator over short values.
TestAbstractByteCollection.javaClass
TestAbstractCharCollection.javaClass
TestAbstractDoubleCollection.javaClass
TestAbstractFloatCollection.javaClass
TestAbstractIntCollection.javaClass
TestAbstractLongCollection.javaClass
TestAbstractShortCollection.javaClass
TestArrayByteList.javaClass
TestArrayCharList.javaClass
TestArrayDoubleList.javaClass
TestArrayFloatList.javaClass
TestArrayIntList.javaClass
TestArrayLongList.javaClass
TestArrayShortList.javaClass
TestArrayUnsignedByteList.javaClass
TestArrayUnsignedIntList.javaClass
TestArrayUnsignedShortList.javaClass
TestByteCollections.javaClass
TestByteIterator.javaClass
TestByteList.javaClass
TestByteListIterator.javaClass
TestCharCollections.javaClass
TestCharIterator.javaClass
TestCharList.javaClass
TestCharListIterator.javaClass
TestDoubleCollections.javaClass
TestDoubleIterator.javaClass
TestDoubleList.javaClass
TestDoubleListIterator.javaClass
TestFloatCollections.javaClass
TestFloatIterator.javaClass
TestFloatList.javaClass
TestFloatListIterator.javaClass
TestIntCollections.javaClass
TestIntIterator.javaClass
TestIntList.javaClass
TestIntListIterator.javaClass
TestLongCollections.javaClass
TestLongIterator.javaClass
TestLongList.javaClass
TestLongListIterator.javaClass
TestRandomAccessByteList.javaClass
TestRandomAccessCharList.javaClass
TestRandomAccessDoubleList.javaClass
TestRandomAccessFloatList.javaClass
TestRandomAccessIntList.javaClass
TestRandomAccessLongList.javaClass
TestRandomAccessShortList.javaClass
TestShortCollections.javaClass
TestShortIterator.javaClass
TestShortList.javaClass
TestShortListIterator.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.