Package gov.nih.mipav.model.file
Enum libxl.JxlEncoderStatus
- All Implemented Interfaces:
Serializable,Comparable<libxl.JxlEncoderStatus>,java.lang.constant.Constable
- Enclosing class:
libxl
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn error occurred, for example out of memory.The encoder needs more output buffer to continue encoding.Function call finished successfully, or encoding is finished and there is nothing more to be done. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintstatic libxl.JxlEncoderStatusReturns the enum constant of this type with the specified name.static libxl.JxlEncoderStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
JXL_ENC_SUCCESS
Function call finished successfully, or encoding is finished and there is nothing more to be done. -
JXL_ENC_ERROR
An error occurred, for example out of memory. -
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
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
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 nameNullPointerException- if the argument is null
-
getNumVal
public int getNumVal()
-