Package gov.nih.mipav.model.file
Enum charls.encoding_options
- java.lang.Object
-
- java.lang.Enum<charls.encoding_options>
-
- gov.nih.mipav.model.file.charls.encoding_options
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.encoding_options>
- Enclosing class:
- charls
static enum charls.encoding_options extends java.lang.Enum<charls.encoding_options>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description even_destination_sizeinclude_pc_parameters_jaiinclude_version_numbernone
-
Field Summary
Fields Modifier and Type Field Description private intceo
-
Constructor Summary
Constructors Modifier Constructor Description privateencoding_options(int ceo)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetVal()static charls.encoding_optionsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.encoding_options[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
none
public static final charls.encoding_options none
-
even_destination_size
public static final charls.encoding_options even_destination_size
-
include_version_number
public static final charls.encoding_options include_version_number
-
include_pc_parameters_jai
public static final charls.encoding_options include_pc_parameters_jai
-
-
Method Detail
-
values
public static charls.encoding_options[] 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.encoding_options c : charls.encoding_options.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.encoding_options 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
-
getVal
public int getVal()
-
-