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