org.cts.op.transformation.grids
Enum Grid.InterpolationMethod
java.lang.Object
java.lang.Enum<Grid.InterpolationMethod>
org.cts.op.transformation.grids.Grid.InterpolationMethod
- All Implemented Interfaces:
- Serializable, Comparable<Grid.InterpolationMethod>
- Enclosing interface:
- Grid
public static enum Grid.InterpolationMethod
- extends Enum<Grid.InterpolationMethod>
NEAREST
public static final Grid.InterpolationMethod NEAREST
BILINEAR
public static final Grid.InterpolationMethod BILINEAR
BICUBIC
public static final Grid.InterpolationMethod BICUBIC
values
public static Grid.InterpolationMethod[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Grid.InterpolationMethod c : Grid.InterpolationMethod.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Grid.InterpolationMethod valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2014 IRSTV CNRS-FR-2488. All Rights Reserved.