Enum Class TIFFByteOrder

java.lang.Object
java.lang.Enum<TIFFByteOrder>
com.datalogics.PDFL.TIFFByteOrder
All Implemented Interfaces:
Serializable, Comparable<TIFFByteOrder>, Constable

public enum TIFFByteOrder extends Enum<TIFFByteOrder>
TIFF Byte Order values describing the byte order used within a file.
  • Enum Constant Details

    • BIG_ENDIAN

      public static final TIFFByteOrder BIG_ENDIAN
      Use Big Endian order (Motorola).
    • LITTLE_ENDIAN

      public static final TIFFByteOrder LITTLE_ENDIAN
      Use Little Endian order (Intel).
    • HOST

      public static final TIFFByteOrder HOST
      Use the host machine's Endian order.
  • Method Details

    • values

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

      public static TIFFByteOrder valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null