org.apache.xalan.serialize
Class EncodingInfo

java.lang.Object
  extended byorg.apache.xalan.serialize.EncodingInfo

public class EncodingInfo
extends Object

Holds information about a given encoding.


Field Summary
(package private)  String javaName
          The name used by the Java convertor.
(package private)  int lastPrintable
          The last printable character.
(package private)  String name
          The encoding name.
 
Constructor Summary
EncodingInfo(String name, String javaName, int lastPrintable)
          Create an EncodingInfo object based on the name, java name, and the max character size.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

final String name
The encoding name.


javaName

final String javaName
The name used by the Java convertor.


lastPrintable

final int lastPrintable
The last printable character.

Constructor Detail

EncodingInfo

public EncodingInfo(String name,
                    String javaName,
                    int lastPrintable)
Create an EncodingInfo object based on the name, java name, and the max character size.

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