public enum ResamplerProfile extends java.lang.Enum<ResamplerProfile>
| Enum Constant and Description |
|---|
DEFAULT
Default profile.
|
DISABLE
No resampling.
|
HIGH
High quality, low speed.
|
LOW
Low quality, high speed.
|
MEDIUM
Medium quality, medium speed.
|
| Modifier and Type | Method and Description |
|---|---|
static ResamplerProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResamplerProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResamplerProfile DISABLE
public static final ResamplerProfile DEFAULT
MEDIUM.public static final ResamplerProfile HIGH
public static final ResamplerProfile MEDIUM
public static final ResamplerProfile LOW
public static ResamplerProfile[] values()
for (ResamplerProfile c : ResamplerProfile.values()) System.out.println(c);
public static ResamplerProfile 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