Package gov.nih.mipav.model.file
Enum charls.charls_spiff_resolution_units
- java.lang.Object
-
- java.lang.Enum<charls.charls_spiff_resolution_units>
-
- gov.nih.mipav.model.file.charls.charls_spiff_resolution_units
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.charls_spiff_resolution_units>
- Enclosing class:
- charls
static enum charls.charls_spiff_resolution_units extends java.lang.Enum<charls.charls_spiff_resolution_units>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARLS_SPIFF_RESOLUTION_UNITS_ASPECT_RATIOCHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_CENTIMETERCHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_INCH
-
Field Summary
Fields Modifier and Type Field Description private intnumVal
-
Constructor Summary
Constructors Modifier Constructor Description privatecharls_spiff_resolution_units(int numVal)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNumVal()static charls.charls_spiff_resolution_unitsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.charls_spiff_resolution_units[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHARLS_SPIFF_RESOLUTION_UNITS_ASPECT_RATIO
public static final charls.charls_spiff_resolution_units CHARLS_SPIFF_RESOLUTION_UNITS_ASPECT_RATIO
-
CHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_INCH
public static final charls.charls_spiff_resolution_units CHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_INCH
-
CHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_CENTIMETER
public static final charls.charls_spiff_resolution_units CHARLS_SPIFF_RESOLUTION_UNITS_DOTS_PER_CENTIMETER
-
-
Method Detail
-
values
public static charls.charls_spiff_resolution_units[] 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_spiff_resolution_units c : charls.charls_spiff_resolution_units.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_spiff_resolution_units 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()
-
-