|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FeatureType>
ucar.nc2.constants.FeatureType
public enum FeatureType
Type-safe enumeration of CDM Feature types, aka "Scientific Data Types".
Enum Constant Summary | |
---|---|
ANY
No specific type |
|
ANY_POINT
Any of the point types |
|
GRID
Gridded Data |
|
IMAGE
Image data |
|
NONE
deprecated - use ANY |
|
POINT
Point data |
|
PROFILE
Profile data |
|
RADIAL
Radial data |
|
SECTION
Section data |
|
STATION
Station data |
|
STATION_PROFILE
Stations of profiles |
|
STATION_RADIAL
experimental |
|
SWATH
Swath Data |
|
TRAJECTORY
Trajectory data |
Method Summary | |
---|---|
static FeatureType |
getType(java.lang.String name)
Find the FeatureType that matches this name. |
boolean |
isPointFeatureType()
Is this a Point feature type? |
static FeatureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static FeatureType[] |
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 FeatureType ANY
public static final FeatureType GRID
public static final FeatureType RADIAL
public static final FeatureType SWATH
public static final FeatureType IMAGE
public static final FeatureType ANY_POINT
public static final FeatureType POINT
public static final FeatureType PROFILE
public static final FeatureType SECTION
public static final FeatureType STATION
public static final FeatureType STATION_PROFILE
public static final FeatureType TRAJECTORY
public static final FeatureType STATION_RADIAL
public static final FeatureType NONE
Method Detail |
---|
public static FeatureType[] values()
for (FeatureType c : FeatureType.values()) System.out.println(c);
public static FeatureType 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 FeatureType getType(java.lang.String name)
name
- find FeatureType with this name.
public boolean isPointFeatureType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |