|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AxisType>
ucar.nc2.constants.AxisType
public enum AxisType
Type-safe enumeration of netCDF Coordinate Axis types. These are used for tagging georeferencing axes.
Enum Constant Summary | |
---|---|
Ensemble
represents the ensemble coordinate |
|
GeoX
represents a x coordinate |
|
GeoY
represents a y coordinate |
|
GeoZ
represents a z coordinate |
|
Height
represents a vertical height coordinate |
|
Lat
represents a latitude coordinate |
|
Lon
represents a longitude coordinate |
|
Pressure
represents a vertical pressure coordinate |
|
RadialAzimuth
represents a radial azimuth coordinate |
|
RadialDistance
represents a radial distance coordinate |
|
RadialElevation
represents a radial elevation coordinate |
|
RunTime
represents the runTime coordinate |
|
Time
represents the time coordinate |
Method Summary | |
---|---|
int |
axisOrder()
axis ordering: runTime - ensemble - time - z - y - x or elev - azimuth - distance |
static AxisType |
getType(java.lang.String name)
Find the AxisType that matches this name. |
static AxisType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static AxisType[] values()
for (AxisType c : AxisType.values()) System.out.println(c);
public static AxisType 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 name
java.lang.NullPointerException
- if the argument is nullpublic static AxisType getType(java.lang.String name)
name
- match this name
public int axisOrder()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |