public interface ExtraEncoding 
      PdfEncoding. 
      | 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. 
               |  
          
byte[] charToByte(String text, String encoding)
text - the Unicode string 
           encoding - the requested encoding. It's mainly of use if the same class supports more than one encoding. 
           null if no conversion is supported 
           byte[] charToByte(char char1,
                  String encoding) 
          char1 - the Unicode char 
           encoding - the requested encoding. It's mainly of use if the same class supports more than one encoding. 
           null if no conversion is supported 
           String byteToChar(byte[] b, String encoding)
b - the input byte array 
           encoding - the requested encoding. It's mainly of use if the same class supports more than one encoding. 
           null if no conversion is supported 
           Copyright © 1998–2019. All rights reserved.