public enum AxisType extends Enum<AxisType>
Enum Constant and Description |
---|
Dimension |
Ensemble |
GeoX |
GeoY |
GeoZ |
Height |
Lat |
Lon |
Pressure |
RadialAzimuth |
RadialDistance |
RadialElevation |
RunTime |
SimpleGeometryID |
SimpleGeometryX |
SimpleGeometryY |
SimpleGeometryZ |
Spectral |
Time |
TimeOffset |
Modifier and Type | Method and Description |
---|---|
int |
axisOrder()
axis ordering: runTime - ensemble - time - z - y - x or elev - azimuth - distance
|
String |
getCFAxisName() |
static AxisType |
getType(String name)
Find the AxisType that matches this name.
|
boolean |
isHoriz() |
boolean |
isTime() |
boolean |
isVert() |
static AxisType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AxisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxisType RunTime
public static final AxisType Ensemble
public static final AxisType Time
public static final AxisType GeoX
public static final AxisType GeoY
public static final AxisType GeoZ
public static final AxisType Lat
public static final AxisType Lon
public static final AxisType Height
public static final AxisType Pressure
public static final AxisType RadialAzimuth
public static final AxisType RadialDistance
public static final AxisType RadialElevation
public static final AxisType Spectral
public static final AxisType TimeOffset
public static final AxisType Dimension
public static final AxisType SimpleGeometryX
public static final AxisType SimpleGeometryY
public static final AxisType SimpleGeometryZ
public static final AxisType SimpleGeometryID
public static AxisType[] values()
for (AxisType c : AxisType.values()) System.out.println(c);
public static AxisType 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 nullpublic static AxisType getType(String name)
name
- match this namepublic int axisOrder()
public String getCFAxisName()
public boolean isHoriz()
public boolean isTime()
public boolean isVert()