private static class PdfEncodings.WingdingsConversion extends Object implements ExtraEncoding
Modifier and Type | Field and Description |
---|---|
private static byte[] |
table |
Modifier | Constructor and Description |
---|---|
private |
PdfEncodings.WingdingsConversion() |
Modifier and Type | Method and Description |
---|---|
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.
|
public byte[] charToByte(char char1, String encoding)
ExtraEncoding
charToByte
in interface ExtraEncoding
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 supportedpublic byte[] charToByte(String text, String encoding)
ExtraEncoding
charToByte
in interface ExtraEncoding
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 supportedpublic String byteToChar(byte[] b, String encoding)
ExtraEncoding
byteToChar
in interface ExtraEncoding
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