Package gov.nih.mipav.model.file
Enum libxl.JxlEndianness
- All Implemented Interfaces:
Serializable,Comparable<libxl.JxlEndianness>,java.lang.constant.Constable
- Enclosing class:
libxl
Ordering of multi-byte data.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionForce big endianForce little endianUse the endianness of the system, either little endian or big endian, without forcing either specific endianness. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintstatic libxl.JxlEndiannessReturns the enum constant of this type with the specified name.static libxl.JxlEndianness[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
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
Force little endian -
JXL_BIG_ENDIAN
Force big endian
-
-
Field Details
-
numVal
private final int numVal
-
-
Constructor Details
-
JxlEndianness
private JxlEndianness(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()
-