public enum ImageEnhancementMode extends Enum<ImageEnhancementMode>
| Enum Constant and Description |
|---|
AUTO
No change.
|
OFF
None.
|
USE_SPECIFIED_TECHNIQUES
Use specified techniques.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageEnhancementMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageEnhancementMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageEnhancementMode AUTO
public static final ImageEnhancementMode USE_SPECIFIED_TECHNIQUES
public static final ImageEnhancementMode OFF
public static ImageEnhancementMode[] values()
for (ImageEnhancementMode c : ImageEnhancementMode.values()) System.out.println(c);
public static ImageEnhancementMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null