Package gov.nih.mipav.model.file
Enum charls.encoder_state
- java.lang.Object
-
- java.lang.Enum<charls.encoder_state>
-
- gov.nih.mipav.model.file.charls.encoder_state
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.encoder_state>
- Enclosing class:
- charls
static enum charls.encoder_state extends java.lang.Enum<charls.encoder_state>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description completeddestination_setinitialspiff_headertables_and_miscellaneous
-
Constructor Summary
Constructors Modifier Constructor Description privateencoder_state()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static charls.encoder_statevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.encoder_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.encoder_state initial
-
destination_set
public static final charls.encoder_state destination_set
-
spiff_header
public static final charls.encoder_state spiff_header
-
tables_and_miscellaneous
public static final charls.encoder_state tables_and_miscellaneous
-
completed
public static final charls.encoder_state completed
-
-
Method Detail
-
values
public static charls.encoder_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.encoder_state c : charls.encoder_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.encoder_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
-
-