Package gov.nih.mipav.model.file
Enum charls.decoder_state
- java.lang.Object
-
- java.lang.Enum<charls.decoder_state>
-
- gov.nih.mipav.model.file.charls.decoder_state
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.decoder_state>
- Enclosing class:
- charls
static enum charls.decoder_state extends java.lang.Enum<charls.decoder_state>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description completedheader_readinitialsource_setspiff_header_not_foundspiff_header_read
-
Constructor Summary
Constructors Modifier Constructor Description privatedecoder_state()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static charls.decoder_statevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.decoder_state[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
initial
public static final charls.decoder_state initial
-
source_set
public static final charls.decoder_state source_set
-
spiff_header_read
public static final charls.decoder_state spiff_header_read
-
spiff_header_not_found
public static final charls.decoder_state spiff_header_not_found
-
header_read
public static final charls.decoder_state header_read
-
completed
public static final charls.decoder_state completed
-
-
Method Detail
-
values
public static charls.decoder_state[] 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.decoder_state c : charls.decoder_state.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.decoder_state 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
-
-