public static enum Grid.InterpolationMethod extends Enum<Grid.InterpolationMethod>
| Modifier and Type | Method and Description |
|---|---|
static Grid.InterpolationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Grid.InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Grid.InterpolationMethod NEAREST
public static final Grid.InterpolationMethod BILINEAR
public static final Grid.InterpolationMethod BICUBIC
public static Grid.InterpolationMethod[] values()
for (Grid.InterpolationMethod c : Grid.InterpolationMethod.values()) System.out.println(c);
public static Grid.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 © 2019 CNRS. All rights reserved.