| com.lowagie.text.pdf.ExtraEncoding
ExtraEncoding | public interface ExtraEncoding (Code) | | Classes implementing this interface can create custom encodings or
replace existing ones. It is used in the context of PdfEncoding .
author: Paulo Soares (psoares@consiste.pt) |
Method Summary | |
public String | byteToChar(byte b, String encoding) Converts a byte array to an Unicode string according to some encoding.
Parameters: b - the input byte array Parameters: encoding - the requested encoding. | public byte[] | charToByte(String text, String encoding) Converts an Unicode string to a byte array according to some encoding.
Parameters: text - the Unicode string Parameters: encoding - the requested encoding. | public byte[] | charToByte(char char1, String encoding) Converts an Unicode char to a byte array according to some encoding.
Parameters: char1 - the Unicode char Parameters: encoding - the requested encoding. |
byteToChar | public String byteToChar(byte b, String encoding)(Code) | | Converts a byte array to an Unicode string according to some encoding.
Parameters: b - the input byte array Parameters: encoding - the requested encoding. It's mainly of use if the same classsupports more than one encoding. the conversion or null if no conversion is supported |
charToByte | public byte[] charToByte(String text, String encoding)(Code) | | Converts an Unicode string to a byte array according to some encoding.
Parameters: text - the Unicode string Parameters: encoding - the requested encoding. It's mainly of use if the same classsupports more than one encoding. the conversion or null if no conversion is supported |
charToByte | public byte[] charToByte(char char1, String encoding)(Code) | | Converts an Unicode char to a byte array according to some encoding.
Parameters: char1 - the Unicode char Parameters: encoding - the requested encoding. It's mainly of use if the same classsupports more than one encoding. the conversion or null if no conversion is supported |
|
|