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