org.apache.commons.codec.net
Class CharacterEncodingNames

java.lang.Object
  extended byorg.apache.commons.codec.net.CharacterEncodingNames

class CharacterEncodingNames
extends java.lang.Object

Character encoding names required of every implementation of the Java platform. According to the Java documentation JRE character encoding names :

Every implementation of the Java platform is required to support the following character encodings. Consult the release documentation for your implementation to see if any other encodings are supported.

This interface is private to the package since it perhaps would best belong in the [lang] project with other required encoding names. As is, this interface only defines the names used in this package. Even if a similar interface is defined in [lang], it is not forseen that [codec] would be made to depend on [lang].

Since:
1.4
Version:
$Id: CharacterEncodingNames.java,v 1.2 2004/07/27 15:22:10 ggregory Exp $
Author:
Apache Software Foundation
See Also:
JRE character encoding names

Field Summary
(package private) static java.lang.String US_ASCII
           Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.
(package private) static java.lang.String UTF8
           Eight-bit Unicode Transformation Format.
 
Constructor Summary
(package private) CharacterEncodingNames()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

US_ASCII

static final java.lang.String US_ASCII

Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.

Every implementation of the Java platform is required to support this character encoding.

See Also:
JRE character encoding names , Constant Field Values

UTF8

static final java.lang.String UTF8

Eight-bit Unicode Transformation Format.

Every implementation of the Java platform is required to support this character encoding.

See Also:
JRE character encoding names , Constant Field Values
Constructor Detail

CharacterEncodingNames

CharacterEncodingNames()


commons-codec version 1.3 - Copyright © 2002-2004 - Apache Software Foundation