public enum FeatureType extends Enum<FeatureType>
Enum Constant and Description |
---|
ANY |
ANY_POINT |
COVERAGE |
CURVILINEAR |
FMRC |
GRID |
IMAGE |
POINT |
PROFILE |
RADIAL |
SIMPLE_GEOMETRY |
STATION |
STATION_PROFILE |
STATION_RADIAL |
SWATH |
TRAJECTORY |
TRAJECTORY_PROFILE |
UGRID |
Modifier and Type | Method and Description |
---|---|
static FeatureType |
getType(String name)
Find the FeatureType that matches this name.
|
boolean |
isCoverageFeatureType() |
boolean |
isPointFeatureType() |
boolean |
isSimpleGeometry() |
boolean |
isUnstructuredGridFeatureType() |
static FeatureType |
valueOf(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.
|
public static final FeatureType ANY
public static final FeatureType COVERAGE
public static final FeatureType GRID
public static final FeatureType FMRC
public static final FeatureType SWATH
public static final FeatureType CURVILINEAR
public static final FeatureType ANY_POINT
public static final FeatureType POINT
public static final FeatureType PROFILE
public static final FeatureType STATION
public static final FeatureType STATION_PROFILE
public static final FeatureType TRAJECTORY
public static final FeatureType TRAJECTORY_PROFILE
public static final FeatureType RADIAL
public static final FeatureType STATION_RADIAL
public static final FeatureType SIMPLE_GEOMETRY
public static final FeatureType IMAGE
public static final FeatureType UGRID
public static FeatureType[] values()
for (FeatureType c : FeatureType.values()) System.out.println(c);
public static FeatureType 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 FeatureType getType(String name)
name
- find FeatureType with this name, case insensitive.public boolean isPointFeatureType()
public boolean isCoverageFeatureType()
public boolean isUnstructuredGridFeatureType()
public boolean isSimpleGeometry()