public static enum SampledField.InterpolationKind extends Enum<SampledField.InterpolationKind>
| Enum Constant and Description |
|---|
LINEAR |
NEARESTNEIGHBOR |
| Modifier and Type | Method and Description |
|---|---|
static SampledField.InterpolationKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SampledField.InterpolationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampledField.InterpolationKind NEARESTNEIGHBOR
public static final SampledField.InterpolationKind LINEAR
public static SampledField.InterpolationKind[] values()
for (SampledField.InterpolationKind c : SampledField.InterpolationKind.values()) System.out.println(c);
public static SampledField.InterpolationKind 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 © 2009–2016. All rights reserved.