-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRELEASE-NOTES.txt
65 lines (37 loc) · 1.61 KB
/
RELEASE-NOTES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
$Id$
Commons Primitives Package
Version 1.0
Release Notes
INTRODUCTION:
This is a first release of the Commons Primitives package.
This release is primarily composed of implementations of the
java.util collections adapted for the primitive types.
FEATURES:
The current release is composed of four packages.
1) org.apache.commons.collections.primitives
<Type>Collection
- The java.util.Collection interface adapted for the primitive type <Type>
<Type>Iterator
- The java.util.Iterator interface adapted for the primitive type <Type>
<Type>List
- The java.util.List interface adapted for the primitive type <Type>
<Type>ListIterator
- The java.util.ListIterator interface adapted for the primitive type <Type>
Abstract<Type>Collection
- An abstract base for <Type>Collection implementations
RandomAccess<Type>List
- An abstract base for <Type>List implementations backed by random access
data structures like arrays
Array<Type>List
- A <Type>List backed by an array
<Type>Collections
- Static utility methods for working with <Type>Collection instances
2) org.apache.commons.collections.primitives.adapters
Adapters between the Object-based and primitive-based collection types.
3) org.apache.commons.collections.primitives.adapters.io
Adapters converting IO Streams/Readers to Byte/Char iterators, and vice versa.
4) org.apache.commons.collections.primitives.decorators
Unmodifiable<Type>List
Unmodifiable<Type>Iterator
Unmodifiable<Type>ListIterator
- Unmodifiable decorators around <Type>List, <Type>Iterator and <Type>ListIterator