EncodingInfopublic 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 | nameThe ISO encoding name. | final String | javaNameThe name used by the Java convertor. | final int | lastPrintableThe 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.
this.name = name;
this.javaName = javaName;
this.lastPrintable = lastPrintable;
|
|