Package gov.nih.mipav.model.file
Enum charls.PixelType
- java.lang.Object
-
- java.lang.Enum<charls.PixelType>
-
- gov.nih.mipav.model.file.charls.PixelType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<charls.PixelType>
- Enclosing class:
- charls
static enum charls.PixelType extends java.lang.Enum<charls.PixelType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description sample_16sample_16_pairsample_16_quadsample_16_tripletsample_32sample_32_pairsample_32_quadsample_32_tripletsample_8sample_8_pairsample_8_quadsample_8_triplet
-
Constructor Summary
Constructors Modifier Constructor Description privatePixelType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static charls.PixelTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static charls.PixelType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
sample_8
public static final charls.PixelType sample_8
-
sample_8_pair
public static final charls.PixelType sample_8_pair
-
sample_8_triplet
public static final charls.PixelType sample_8_triplet
-
sample_8_quad
public static final charls.PixelType sample_8_quad
-
sample_16
public static final charls.PixelType sample_16
-
sample_16_pair
public static final charls.PixelType sample_16_pair
-
sample_16_triplet
public static final charls.PixelType sample_16_triplet
-
sample_16_quad
public static final charls.PixelType sample_16_quad
-
sample_32
public static final charls.PixelType sample_32
-
sample_32_pair
public static final charls.PixelType sample_32_pair
-
sample_32_triplet
public static final charls.PixelType sample_32_triplet
-
sample_32_quad
public static final charls.PixelType sample_32_quad
-
-
Method Detail
-
values
public static charls.PixelType[] 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.PixelType c : charls.PixelType.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.PixelType 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
-
-