FileDocCategorySizeDatePackage
EncodingInfo.javaAPI DocJava SE 5 API1737Fri Aug 26 14:56:02 BST 2005com.sun.org.apache.xml.internal.serializer

EncodingInfo

public class EncodingInfo extends Object
Holds information about a given encoding, which is the Java name for the encoding, the equivalent ISO name, and the integer value of the last pritable character in the encoding.

Fields Summary
final String
name
The ISO encoding name.
final String
javaName
The name used by the Java convertor.
final int
lastPrintable
The last printable character.
Constructors Summary
public EncodingInfo(String name, String javaName, int lastPrintable)
Create an EncodingInfo object based on the name, java name, and the max character size.

param
name non-null reference to the ISO name.
param
javaName non-null reference to the Java encoding name.
param
lastPrintable The maximum character that can be written.


        this.name = name;
        this.javaName = javaName;
        this.lastPrintable = lastPrintable;
    
Methods Summary