Enum EncodingMode

java.lang.Object
java.lang.Enum<EncodingMode>
org.apache.fop.fonts.EncodingMode
All Implemented Interfaces:
Serializable, Comparable<EncodingMode>, java.lang.constant.Constable

public enum EncodingMode extends Enum<EncodingMode>
This class enumerates all supported encoding modes for fonts: auto, single-byte and CID.
  • Enum Constant Details

    • AUTO

      public static final EncodingMode AUTO
      Automatic selection of encoding mode.
    • SINGLE_BYTE

      public static final EncodingMode SINGLE_BYTE
      Single-byte encoding
    • CID

      public static final EncodingMode CID
      CID encoding
  • Method Details

    • values

      public static EncodingMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EncodingMode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
      Returns the encoding mode name.
      Returns:
      the encoding mode name
    • getValue

      public static EncodingMode getValue(String name)
      Returns the EncodingMode by name.
      Parameters:
      name - the name of the encoding mode to look up
      Returns:
      the encoding mode constant
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EncodingMode>