public enum ProcessedImageType extends java.lang.Enum<ProcessedImageType>
This enumeration represents the types of processed images.
Enum Constant and Description |
---|
DIRECTIONAL |
FFT |
QUALITY |
Modifier and Type | Method and Description |
---|---|
static ProcessedImageType |
fromInteger(int value)
Converts an integer to an enumeration object.
|
int |
value()
Gets the enumeration object value.
|
static ProcessedImageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessedImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessedImageType QUALITY
public static final ProcessedImageType DIRECTIONAL
public static final ProcessedImageType FFT
public static ProcessedImageType[] values()
for (ProcessedImageType c : ProcessedImageType.values()) System.out.println(c);
public static ProcessedImageType 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 int value()
Gets the enumeration object value.
public static ProcessedImageType fromInteger(int value)
Converts an integer to an enumeration object.
value
-