-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathindex.xml
More file actions
executable file
·104 lines (91 loc) · 2.42 KB
/
Copy pathindex.xml
File metadata and controls
executable file
·104 lines (91 loc) · 2.42 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0"?>
<document>
<properties>
<title>Commons Codec</title>
<author email="tobrien@apache.org">Tim O'Brien</author>
</properties>
<body>
<section name="Commons Codec">
<p>
Welcome, to Commons Codec. Common Codec is an attempt to provide
definitive implementations of commonly used encoders and decoders.
</p>
</section>
<section name="Releases">
<ul>
<li>Version 1.1 (from mirror)
<a href="http://jakarta.apache.org/site/binindex.cgi">binary</a>
<a href="http://jakarta.apache.org/site/sourceindex.cgi">source</a> (latest)</li>
</ul>
</section>
<section name="Components">
<p>
Codec is currently comprised of a modest set of utilities and a
simple framework for String encoding and decoding.
</p>
<subsection name="Common Encoders">
<table>
<tr>
<td>
<a href="apidocs/org/apache/commons/codec/binary/Base64.html">
org.apache.commons.codec.binary.Base64</a>
</td>
<td>
Provides Base64 content-transfer-encoding as defined in
<a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>. This
encoder can optionally create 76 character chunked output
for strict adherence to RFC 2045.
</td>
<td>
Production
</td>
</tr>
<tr>
<td>
<a href="apidocs/org/apache/commons/codec/binary/Hex.html">
org.apache.commons.codec.binary.Hex</a>
</td>
<td>
Converts an array of bytes into an array of characters representing the
hexidecimal values of each byte in order
</td>
<td>
Production
</td>
</tr>
</table>
</subsection>
<subsection name="Language Encoders">
<p>
Codec contains a number of commonly used language and phonetic encoders
</p>
<table>
<tr>
<td>
<a href="apidocs/org/apache/commons/codec/language/Soundex.html">
org.apache.commons.codec.language.Soundex</a>
</td>
<td>
Implementation of the Soundex algorithm.
</td>
<td>
Production
</td>
</tr>
<tr>
<td>
<a href="apidocs/org/apache/commons/codec/language/Metaphone.html">
org.apache.commons.codec.language.Metaphone</a>
</td>
<td>
Implementation of the Metaphone algorithm.
</td>
<td>
Production
</td>
</tr>
</table>
</subsection>
</section>
</body>
</document>