public static enum JPGQuality.Format extends java.lang.Enum<JPGQuality.Format>
Enum Constant and Description |
---|
FORMAT_OPTIMISED |
FORMAT_PROGRESSIVE |
FORMAT_STANDARD |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static JPGQuality.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JPGQuality.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPGQuality.Format FORMAT_STANDARD
public static final JPGQuality.Format FORMAT_OPTIMISED
public static final JPGQuality.Format FORMAT_PROGRESSIVE
public static JPGQuality.Format[] values()
for (JPGQuality.Format c : JPGQuality.Format.values()) System.out.println(c);
public static JPGQuality.Format 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 getValue()