Enum libxl.JxlEndianness

java.lang.Object
java.lang.Enum<libxl.JxlEndianness>
gov.nih.mipav.model.file.libxl.JxlEndianness
All Implemented Interfaces:
Serializable, Comparable<libxl.JxlEndianness>, java.lang.constant.Constable
Enclosing class:
libxl

static enum libxl.JxlEndianness extends Enum<libxl.JxlEndianness>
Ordering of multi-byte data.
  • Enum Constant Details

    • JXL_NATIVE_ENDIAN

      public static final libxl.JxlEndianness JXL_NATIVE_ENDIAN
      Use the endianness of the system, either little endian or big endian, without forcing either specific endianness. Do not use if pixel data should be exported to a well defined format.
    • JXL_LITTLE_ENDIAN

      public static final libxl.JxlEndianness JXL_LITTLE_ENDIAN
      Force little endian
    • JXL_BIG_ENDIAN

      public static final libxl.JxlEndianness JXL_BIG_ENDIAN
      Force big endian
  • Field Details

    • numVal

      private final int numVal
  • Constructor Details

    • JxlEndianness

      private JxlEndianness(int numVal)
  • Method Details

    • values

      public static libxl.JxlEndianness[] 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 libxl.JxlEndianness 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
    • getNumVal

      public int getNumVal()