public enum Interpolation extends Enum<Interpolation>
| Enum Constant and Description |
|---|
BICUBIC |
BILINEAR |
NEAREST_NEIGHBOR |
| Modifier and Type | Method and Description |
|---|---|
static Interpolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interpolation NEAREST_NEIGHBOR
AffineTransformOp.TYPE_NEAREST_NEIGHBORpublic static final Interpolation BILINEAR
AffineTransformOp.TYPE_BILINEARpublic static final Interpolation BICUBIC
AffineTransformOp.TYPE_BICUBICpublic static Interpolation[] values()
for (Interpolation c : Interpolation.values()) System.out.println(c);
public static Interpolation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null