Enum libxl.JxlSignature

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

static enum libxl.JxlSignature extends Enum<libxl.JxlSignature>
The result of @ref JxlSignatureCheck.
  • Enum Constant Details

    • JXL_SIG_NOT_ENOUGH_BYTES

      public static final libxl.JxlSignature JXL_SIG_NOT_ENOUGH_BYTES
      Not enough bytes were passed to determine if a valid signature was found.
    • JXL_SIG_INVALID

      public static final libxl.JxlSignature JXL_SIG_INVALID
      No valid JPEG XL header was found.
    • JXL_SIG_CODESTREAM

      public static final libxl.JxlSignature JXL_SIG_CODESTREAM
      A valid JPEG XL codestream signature was found, that is a JPEG XL image without container.
    • JXL_SIG_CONTAINER

      public static final libxl.JxlSignature JXL_SIG_CONTAINER
      A valid container signature was found, that is a JPEG XL image embedded in a box format container.
  • Field Details

    • numVal

      private final int numVal
  • Constructor Details

    • JxlSignature

      private JxlSignature(int numVal)
  • Method Details

    • values

      public static libxl.JxlSignature[] 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.JxlSignature 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()