Package gov.nih.mipav.model.file
Enum charls.charls_compressed_data_format
- java.lang.Object
-
- java.lang.Enum<charls.charls_compressed_data_format>
-
- gov.nih.mipav.model.file.charls.charls_compressed_data_format
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.charls_compressed_data_format>
- Enclosing class:
- charls
static enum charls.charls_compressed_data_format extends java.lang.Enum<charls.charls_compressed_data_format>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description private intnumVal
-
Constructor Summary
Constructors Modifier Constructor Description privatecharls_compressed_data_format(int numVal)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNumVal()static charls.charls_compressed_data_formatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.charls_compressed_data_format[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHARLS_COMPRESSED_DATA_FORMAT_UNKNOWN
public static final charls.charls_compressed_data_format CHARLS_COMPRESSED_DATA_FORMAT_UNKNOWN
-
CHARLS_COMPRESSED_DATA_FORMAT_INTERCHANGE
public static final charls.charls_compressed_data_format CHARLS_COMPRESSED_DATA_FORMAT_INTERCHANGE
-
CHARLS_COMPRESSED_DATA_FORMAT_ABBREVIATED_IMAGE_DATA
public static final charls.charls_compressed_data_format CHARLS_COMPRESSED_DATA_FORMAT_ABBREVIATED_IMAGE_DATA
-
CHARLS_COMPRESSED_DATA_FORMAT_ABBREVIATED_TABLE_SPECIFICATION
public static final charls.charls_compressed_data_format CHARLS_COMPRESSED_DATA_FORMAT_ABBREVIATED_TABLE_SPECIFICATION
-
-
Method Detail
-
values
public static charls.charls_compressed_data_format[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (charls.charls_compressed_data_format c : charls.charls_compressed_data_format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static charls.charls_compressed_data_format valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getNumVal
public int getNumVal()
-
-