public enum InterpolationType extends Enum<InterpolationType>
Enum Constant and Description |
---|
Bilinear |
Cubic_Convolution |
Nearest |
Modifier and Type | Method and Description |
---|---|
static InterpolationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpolationType Nearest
public static final InterpolationType Bilinear
public static final InterpolationType Cubic_Convolution
public static InterpolationType[] values()
for (InterpolationType c : InterpolationType.values()) System.out.println(c);
public static InterpolationType 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 © 2014–2017 European Space Agency (ESA). All rights reserved.