~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/utils/CharsetNames.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-03-13 08:37:01 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140313083701-spnlyo3fl3qcp0ab
Tags: 1.8-1
* New upstream release
* Updated the OSGi metadata
* The dependency on libxz-java is now suggested and no longer required

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 * documentation for your implementation to see if any other encodings are supported. </cite>
30
30
 * </p>
31
31
 * 
32
 
 * <ul>
33
 
 * <li><code>US-ASCII</code><br/>
34
 
 * Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set.</li>
35
 
 * <li><code>ISO-8859-1</code><br/>
36
 
 * ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.</li>
37
 
 * <li><code>UTF-8</code><br/>
38
 
 * Eight-bit Unicode Transformation Format.</li>
39
 
 * <li><code>UTF-16BE</code><br/>
40
 
 * Sixteen-bit Unicode Transformation Format, big-endian byte order.</li>
41
 
 * <li><code>UTF-16LE</code><br/>
42
 
 * Sixteen-bit Unicode Transformation Format, little-endian byte order.</li>
43
 
 * <li><code>UTF-16</code><br/>
44
 
 * Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial byte-order mark (either order
45
 
 * accepted on input, big-endian used on output.)</li>
46
 
 * </ul>
 
32
 * <dl>
 
33
 * <dt><code>US-ASCII</code></dt>
 
34
 * <dd>Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set.</dd>
 
35
 * <dt><code>ISO-8859-1</code></dt>
 
36
 * <dd>ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.</dd>
 
37
 * <dt><code>UTF-8</code></dt>
 
38
 * <dd>Eight-bit Unicode Transformation Format.</dd>
 
39
 * <dt><code>UTF-16BE</code></dt>
 
40
 * <dd>Sixteen-bit Unicode Transformation Format, big-endian byte order.</dd>
 
41
 * <dt><code>UTF-16LE</code></dt>
 
42
 * <dd>Sixteen-bit Unicode Transformation Format, little-endian byte order.</dd>
 
43
 * <dt><code>UTF-16</code></dt>
 
44
 * <dd>Sixteen-bit Unicode Transformation Format, byte order specified by a mandatory initial byte-order mark (either order
 
45
 * accepted on input, big-endian used on output.)</dd>
 
46
 * </dl>
47
47
 * 
48
 
 * This perhaps would best belong in the [lang] project. Even if a similar interface is defined in [lang], it is not
49
 
 * foreseen that [codec] would be made to depend on [lang].
 
48
 * <p>This perhaps would best belong in the [lang] project. Even if a similar interface is defined in [lang], it is not
 
49
 * foreseen that [compress] would be made to depend on [lang].</p>
50
50
 * 
51
51
 * @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
52
52
 * @since 1.4
53
 
 * @version $Id: CharsetNames.java 1309246 2012-04-04 04:51:50Z bodewig $
 
53
 * @version $Id: CharsetNames.java 1552970 2013-12-22 07:03:43Z bodewig $
54
54
 */
55
55
public class CharsetNames {
56
56
    /**
57
 
     * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1. </p>
 
57
     * CharEncodingISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.
58
58
     * <p>
59
59
     * Every implementation of the Java platform is required to support this character encoding.
60
60
     * </p>
123
123
     * @see <a href="http://download.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard charsets</a>
124
124
     */
125
125
    public static final String UTF_8 = "UTF-8";
126
 
}
 
 
b'\\ No newline at end of file'
 
126
}