Enum libxl.JxlEncoderStatus

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

static enum libxl.JxlEncoderStatus extends Enum<libxl.JxlEncoderStatus>
  • Enum Constant Details

    • JXL_ENC_SUCCESS

      public static final libxl.JxlEncoderStatus JXL_ENC_SUCCESS
      Function call finished successfully, or encoding is finished and there is nothing more to be done.
    • JXL_ENC_ERROR

      public static final libxl.JxlEncoderStatus JXL_ENC_ERROR
      An error occurred, for example out of memory.
    • JXL_ENC_NEED_MORE_OUTPUT

      public static final libxl.JxlEncoderStatus JXL_ENC_NEED_MORE_OUTPUT
      The encoder needs more output buffer to continue encoding.
  • Field Details

    • numVal

      private final int numVal
  • Constructor Details

    • JxlEncoderStatus

      private JxlEncoderStatus(int numVal)
  • Method Details

    • values

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