public static enum GribData.InterpolationMethod extends java.lang.Enum<GribData.InterpolationMethod>
| Modifier and Type | Method and Description |
|---|---|
static GribData.InterpolationMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GribData.InterpolationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GribData.InterpolationMethod none
public static final GribData.InterpolationMethod cubic
public static final GribData.InterpolationMethod linear
public static GribData.InterpolationMethod[] values()
for (GribData.InterpolationMethod c : GribData.InterpolationMethod.values()) System.out.println(c);
public static GribData.InterpolationMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null