Package com.itextpdf.text.pdf
Class PdfEncodings.SymbolConversion
java.lang.Object
com.itextpdf.text.pdf.PdfEncodings.SymbolConversion
- All Implemented Interfaces:
ExtraEncoding
- Enclosing class:
- PdfEncodings
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final char[]
private static final IntHashtable
private static final IntHashtable
private static final char[]
private static final char[]
private IntHashtable
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyteToChar
(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.
-
Field Details
-
t1
-
t2
-
translation
-
byteToChar
private final char[] byteToChar -
table1
private static final char[] table1 -
table2
private static final char[] table2
-
-
Constructor Details
-
SymbolConversion
SymbolConversion(boolean symbol)
-
-
Method Details
-
charToByte
Description copied from interface:ExtraEncoding
Converts an Unicode string to a byte array according to some encoding.- Specified by:
charToByte
in interfaceExtraEncoding
- Parameters:
text
- the Unicode stringencoding
- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
null
if no conversion is supported
-
charToByte
Description copied from interface:ExtraEncoding
Converts an Unicode char to a byte array according to some encoding.- Specified by:
charToByte
in interfaceExtraEncoding
- Parameters:
char1
- the Unicode charencoding
- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
null
if no conversion is supported
-
byteToChar
Description copied from interface:ExtraEncoding
Converts a byte array to an Unicode string according to some encoding.- Specified by:
byteToChar
in interfaceExtraEncoding
- Parameters:
b
- the input byte arrayencoding
- the requested encoding. It's mainly of use if the same class supports more than one encoding.- Returns:
- the conversion or
null
if no conversion is supported
-