public static enum GridAxis.DependenceType extends Enum<GridAxis.DependenceType>
| Enum Constant and Description |
|---|
dependent
Auxilary coordinate, eg reftime(time) or time_bounds(time).
|
dimension
Eg swath(scan, scanAcross).
|
fmrcReg
Eg time(reftime, hourOfDay).
|
independent
Has its own dimension, so is a coordinate variable, eg x(x).
|
scalar
A scalar doesnt involve indices.
|
twoD
A coordinate needing two dimensions, eg lat(x,y).
|
| Modifier and Type | Method and Description |
|---|---|
static GridAxis.DependenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridAxis.DependenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridAxis.DependenceType independent
public static final GridAxis.DependenceType dependent
public static final GridAxis.DependenceType scalar
public static final GridAxis.DependenceType twoD
public static final GridAxis.DependenceType fmrcReg
public static final GridAxis.DependenceType dimension
public static GridAxis.DependenceType[] values()
for (GridAxis.DependenceType c : GridAxis.DependenceType.values()) System.out.println(c);
public static GridAxis.DependenceType 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 null