public enum InterpolationMethod extends Enum<InterpolationMethod>
Enum Constant and Description |
---|
Bicubic |
BicubicSharp |
BicubicSmooth |
Bilinear |
CatmullRom |
CubicBSpline |
Lanzcos2 |
Lanzcos3 |
Lanzcos4 |
MitchellNetravali |
NearestNeighbor |
Modifier and Type | Method and Description |
---|---|
static InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpolationMethod NearestNeighbor
public static final InterpolationMethod Bilinear
public static final InterpolationMethod Bicubic
public static final InterpolationMethod BicubicSmooth
public static final InterpolationMethod BicubicSharp
public static final InterpolationMethod CatmullRom
public static final InterpolationMethod CubicBSpline
public static final InterpolationMethod MitchellNetravali
public static final InterpolationMethod Lanzcos2
public static final InterpolationMethod Lanzcos3
public static final InterpolationMethod Lanzcos4
public static InterpolationMethod[] values()
for (InterpolationMethod c : InterpolationMethod.values()) System.out.println(c);
public static InterpolationMethod 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 nullCopyright © 2006–2017, Wilhelm Burger, Mark J. Burge (BSD 2-Clause Simplified License)