@Immutable public static enum Configuration.SamplingMethod extends java.lang.Enum<Configuration.SamplingMethod>
| Enum Constant and Description |
|---|
Bicubic
Bicubic filter
|
MagicKernel
Magic kernel implementation with fixed point arithmetic
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.SamplingMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.SamplingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.SamplingMethod Bicubic
public static final Configuration.SamplingMethod MagicKernel
public static Configuration.SamplingMethod[] values()
for (Configuration.SamplingMethod c : Configuration.SamplingMethod.values()) System.out.println(c);
public static Configuration.SamplingMethod 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