Skip to content

Commit a5f669c

Browse files
committed
Javadoc clean up. Forgot to commit this in my last batch.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/codec/trunk@130182 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8e05fa7 commit a5f669c

1 file changed

Lines changed: 67 additions & 61 deletions

File tree

Lines changed: 67 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,69 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
12
<html>
2-
<body>
3-
Definitive implementations of commonly used encoders
4-
and decoders.
5-
<p>
6-
Codec is currently comprised of a modest set of utilities and a
7-
simple framework for String encoding and decoding in two main
8-
categories: Common Encoders and Language Encoders.
9-
</p>
10-
<h4>
11-
<a name="Common Encoders">Common Encoders</a>
12-
</h4>
13-
<table border="1" width="100%" cellspacing="2" cellpadding="3">
14-
<tr>
15-
<td>
16-
<a href="binary/Base64.html">
17-
org.apache.commons.codec.binary.Base64</a>
18-
</td>
19-
<td>
20-
Provides Base64 content-transfer-encoding as defined in
21-
<a href="http://www.ietf.org/rfc/rfc2045.txt">
22-
RFC 2045</a>
23-
</td>
24-
<td>Production</td>
25-
</tr>
26-
<tr>
27-
<td>
28-
<a href="binary/Hex.html">
29-
org.apache.commons.codec.binary.Hex</a>
30-
</td>
31-
<td>
32-
Converts an array of bytes into an array of characters representing the
33-
hexidecimal values of each byte in order
34-
</td>
35-
<td>Production</td>
36-
</tr>
37-
</table>
38-
<h4>
39-
<a name="Language Encoders">Language Encoders</a>
40-
</h4>
41-
<p>
42-
Codec contains a number of commonly used language and phonetic encoders
43-
</p>
44-
<table border="1" width="100%" cellspacing="2" cellpadding="3">
45-
<tr>
46-
<td>
47-
<a href="language/Soundex.html">
48-
org.apache.commons.codec.language.Soundex</a>
49-
</td>
50-
<td>Implementation of the Soundex algorithm.</td>
51-
<td>Production</td>
52-
</tr>
53-
<tr>
54-
<td>
55-
<a href="language/Metaphone.html">
56-
org.apache.commons.codec.language.Metaphone</a>
57-
</td>
58-
<td>Implementation of the Metaphone algorithm.</td>
59-
<td>Production</td>
60-
</tr>
61-
</table>
62-
</body>
3+
<head>
4+
</head>
5+
<body>
6+
<p>The types in this package define a small set of interfaces used by
7+
the
8+
various implementations in the sub-packages.</p>
9+
<p>Definitive implementations of commonly used encoders and decoders.</p>
10+
<p>Codec is currently comprised of a modest set of utilities and a
11+
simple framework for String encoding and decoding in three categories:
12+
Binary Encoders, Language Encoders, and Network Encoders. </p>
13+
<h4><a name="Common Encoders">Binary Encoders</a> </h4>
14+
<table border="1" width="100%" cellspacing="2" cellpadding="3">
15+
<tbody>
16+
<tr>
17+
<td> <a href="binary/Base64.html">org.apache.commons.codec.binary.Base64</a>
18+
</td>
19+
<td> Provides Base64 content-transfer-encoding as defined in <a
20+
href="http://www.ietf.org/rfc/rfc2045.txt"> RFC 2045</a> </td>
21+
<td>Production</td>
22+
</tr>
23+
<tr>
24+
<td> <a href="binary/Hex.html">org.apache.commons.codec.binary.Hex</a>
25+
</td>
26+
<td> Converts an array of bytes into an array of characters
27+
representing the hexidecimal values of each byte in order </td>
28+
<td>Production</td>
29+
</tr>
30+
</tbody>
31+
</table>
32+
<h4> <a name="Language Encoders">Language Encoders</a> </h4>
33+
<p> Codec contains a number of commonly used language and phonetic
34+
encoders </p>
35+
<table border="1" width="100%" cellspacing="2" cellpadding="3">
36+
<tbody>
37+
<tr>
38+
<td> <a
39+
href="file:///C:/cvs-store/apache.org/jakarta/commons/codec/src/java/org/apache/commons/codec/language/Soundex.html">org.apache.commons.codec.language.Soundex</a>
40+
</td>
41+
<td>Implementation of the Soundex algorithm.</td>
42+
<td>Production</td>
43+
</tr>
44+
<tr>
45+
<td> <a
46+
href="file:///C:/cvs-store/apache.org/jakarta/commons/codec/src/java/org/apache/commons/codec/language/Metaphone.html">org.apache.commons.codec.language.Metaphone</a>
47+
</td>
48+
<td>Implementation of the Metaphone algorithm.</td>
49+
<td>Production</td>
50+
</tr>
51+
</tbody>
52+
</table>
53+
<h4><a name="Network_Encoders">Network Encoders</a></h4>
54+
<h4> </h4>
55+
<p> Codec contains network related encoders </p>
56+
<table border="1" width="100%" cellspacing="2" cellpadding="3">
57+
<tbody>
58+
<tr>
59+
<td> <a
60+
href="file:///C:/cvs-store/apache.org/jakarta/commons/codec/src/java/org/apache/commons/codec/net/URLCodec.html">org.apache.commons.codec.net.URLCodec</a>
61+
</td>
62+
<td>Implements the 'www-form-urlencoded' encoding scheme.</td>
63+
<td>Production</td>
64+
</tr>
65+
</tbody>
66+
</table>
67+
<br>
68+
</body>
6369
</html>

0 commit comments

Comments
 (0)