|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ExtraEncoding
Classes implementing this interface can create custom encodings or
replace existing ones. It is used in the context of PdfEncoding
.
Method Summary | |
---|---|
String |
byteToChar(byte[] b,
String encoding)
Converts a byte array to an Unicode string according to some encoding. |
byte[] |
charToByte(char char1,
String encoding)
Converts an Unicode char to a byte array according to some encoding. |
byte[] |
charToByte(String text,
String encoding)
Converts an Unicode string to a byte array according to some encoding. |
Method Detail |
---|
byte[] charToByte(String text, String encoding)
text
- the Unicode stringencoding
- the requested encoding. It's mainly of use if the same class
supports more than one encoding.
null
if no conversion is supportedbyte[] charToByte(char char1, String encoding)
char1
- the Unicode charencoding
- the requested encoding. It's mainly of use if the same class
supports more than one encoding.
null
if no conversion is supportedString byteToChar(byte[] b, String encoding)
b
- the input byte arrayencoding
- the requested encoding. It's mainly of use if the same class
supports more than one encoding.
null
if no conversion is supported
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |