Skip to content

Commit b75082c

Browse files
committed
Add missing package descriptions.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130130 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5bbfbea commit b75082c

4 files changed

Lines changed: 73 additions & 0 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<html>
2+
<body>
3+
<b>Deprecated</b><i> and replaced by {@link org.apache.commons.codec.binary}</i>.
4+
</body>
5+
</html>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<html>
2+
<body>
3+
Utilities for Base64 and Hexadecimal String encoding and decoding.
4+
</body>
5+
</html>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<html>
2+
<body>
3+
A number of commonly used language and phonetic encoders.
4+
</body>
5+
</html>
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<html>
2+
<body>
3+
Attempts to provide definitive implementations of commonly used encoders and decoders.
4+
<p>Codec is currently comprised of a modest set of utilities and a simple
5+
framework for String encoding and decoding in two main categories: Common
6+
Encoders and Language Encoders.</p>
7+
<h4>
8+
<a name="Common Encoders">Common Encoders</a>
9+
</h4>
10+
<table border="1" width="100%" cellspacing="2" cellpadding="3">
11+
<tr>
12+
<td>
13+
<a href="binary/Base64.html">
14+
org.apache.commons.codec.binary.Base64</a>
15+
</td>
16+
<td>
17+
Provides Base64 content-transfer-encoding as defined in
18+
<a href="http://www.ietf.org/rfc/rfc1521.txt">
19+
RFC 1521</a>
20+
</td>
21+
<td>Production</td>
22+
</tr>
23+
<tr>
24+
<td>
25+
<a href="binary/Hex.html">
26+
org.apache.commons.codec.binary.Hex</a>
27+
</td>
28+
<td>
29+
Converts an array of bytes into an array of characters representing the
30+
hexidecimal values of each byte in order
31+
</td>
32+
<td>Production</td>
33+
</tr>
34+
</table>
35+
<h4>
36+
<a name="Language Encoders">Language Encoders</a>
37+
</h4>
38+
<p>Codec contains a number of commonly used language and phonetic encoders</p>
39+
<table border="1" width="100%" cellspacing="2" cellpadding="3">
40+
<tr>
41+
<td>
42+
<a href="language/Soundex.html">
43+
org.apache.commons.codec.language.Soundex</a>
44+
</td>
45+
<td>Implementation of the Soundex algorithm.</td>
46+
<td>Production</td>
47+
</tr>
48+
<tr>
49+
<td>
50+
<a href="language/Metaphone.html">
51+
org.apache.commons.codec.language.Metaphone</a>
52+
</td>
53+
<td>Implementation of the Metaphone algorithm.</td>
54+
<td>Production</td>
55+
</tr>
56+
</table>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)