File: control

package info (click to toggle)
libgoogle-collections-java 0~20080808-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,064 kB
  • ctags: 2,837
  • sloc: java: 12,432; xml: 143; makefile: 20; sh: 11
file content (42 lines) | stat: -rw-r--r-- 2,050 bytes parent folder | download
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
Source: libgoogle-collections-java
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Torsten Werner <twerner@debian.org>, Ludovic Claude <ludovic.claude@laposte.net>
Build-Depends: ant, debhelper (>= 5), cdbs (>= 0.4.5.3), default-jdk
Build-Depends-Indep: maven-repo-helper, maven-ant-helper
Standards-Version: 3.8.1
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libgoogle-collections-java
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libgoogle-collections-java/
Homepage: http://code.google.com/p/google-collections/

Package: libgoogle-collections-java
Architecture: all
Depends: ${misc:Depends}
Description: suite of collections and related goodies for Java 5.0
 This library is a natural extension of the Java Collections Framework. The
 major new types are:
  * BiMap. A Map that guarantees unique values, and supports an inverse view.
  * Multiset. A Collection that may contain duplicate values like a List, yet
    has order-independent equality like a Set. Often used to represent a
    histogram.
  * Multimap. Similar to Map, but may contain duplicate keys. Has subtypes
    SetMultimap and ListMultimap providing more specific behavior. 
 .
 There are also more than a dozen collection implementations, mostly of the
 interfaces above, but not all. ReferenceMap, for example, is a ConcurrentMap
 implementation which easily handles any combination of strong, soft or weak
 keys with strong, soft or weak values. Static utility classes include:
  * Comparators. Natural order, compound, null-friendly, ad-hoc, ...
  * Iterators and Iterables. Element-based equality, cycle, concat, partition,
    filter with predicate, transform with function ...
  * Lists, Sets and Maps. A plethora of convenient factory methods and much
    more.
  * PrimitiveArrays: "boxing"/"unboxing" of primitive arrays 
 .
 And there's more:
  * Immutable collections
  * Forwarding collections
  * Constrained collections
  * Implementation helpers like AbstractIterator