public enum EnumPhotometricInterpretation extends java.lang.Enum<EnumPhotometricInterpretation>
| Enum Constant and Description |
|---|
MONOCHROME1
The MONOCHROM e1.
|
MONOCHROME2
The MONOCHROM e2.
|
PALETTE_COLOR
The PALETTE_COLOR.
|
RGB
The RGB.
|
UNSIGNEDINT_0000H
The UNSIGNEDINT_0000H.
|
YBR_FULL
The YBR_FULL.
|
YBR_FULL_420
The YBR_FULL_420.
|
YBR_FULL_422
The YBR_FULL_422.
|
YBR_ICT
The YBR_ICT.
|
YBR_PARTIAL_420
The YBR_PARTIAL_420.
|
YBR_PARTIAL_422
The YBR_PARTIAL_422.
|
YBR_RCT
The YBR_RCT.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumPhotometricInterpretation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPhotometricInterpretation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPhotometricInterpretation UNSIGNEDINT_0000H
public static final EnumPhotometricInterpretation RGB
public static final EnumPhotometricInterpretation MONOCHROME1
public static final EnumPhotometricInterpretation MONOCHROME2
public static final EnumPhotometricInterpretation PALETTE_COLOR
public static final EnumPhotometricInterpretation YBR_FULL
public static final EnumPhotometricInterpretation YBR_FULL_422
public static final EnumPhotometricInterpretation YBR_FULL_420
public static final EnumPhotometricInterpretation YBR_PARTIAL_422
public static final EnumPhotometricInterpretation YBR_PARTIAL_420
public static final EnumPhotometricInterpretation YBR_ICT
public static final EnumPhotometricInterpretation YBR_RCT
public static EnumPhotometricInterpretation[] values()
for (EnumPhotometricInterpretation c : EnumPhotometricInterpretation.values()) System.out.println(c);
public static EnumPhotometricInterpretation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()