Class PdfEncodings.WingdingsConversion

java.lang.Object
com.lowagie.text.pdf.PdfEncodings.WingdingsConversion
All Implemented Interfaces:
ExtraEncoding
Enclosing class:
PdfEncodings

private static class PdfEncodings.WingdingsConversion extends Object implements ExtraEncoding
  • Field Details

    • table

      private static final byte[] table
  • Constructor Details

    • WingdingsConversion

      private WingdingsConversion()
  • Method Details

    • charToByte

      public byte[] charToByte(char char1, String encoding)
      Description copied from interface: ExtraEncoding
      Converts an Unicode char to a byte array according to some encoding.
      Specified by:
      charToByte in interface ExtraEncoding
      Parameters:
      char1 - the Unicode char
      encoding - 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

      public byte[] charToByte(String text, String encoding)
      Description copied from interface: ExtraEncoding
      Converts an Unicode string to a byte array according to some encoding.
      Specified by:
      charToByte in interface ExtraEncoding
      Parameters:
      text - the Unicode string
      encoding - 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

      public String byteToChar(byte[] b, String encoding)
      Description copied from interface: ExtraEncoding
      Converts a byte array to an Unicode string according to some encoding.
      Specified by:
      byteToChar in interface ExtraEncoding
      Parameters:
      b - the input byte array
      encoding - 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