public static enum CF.FeatureType extends java.lang.Enum<CF.FeatureType>
Enum Constant and Description |
---|
line |
point |
polygon |
profile |
timeSeries |
timeSeriesProfile |
trajectory |
trajectoryProfile |
Modifier and Type | Method and Description |
---|---|
static FeatureType |
convert(CF.FeatureType cff) |
static CF.FeatureType |
convert(FeatureType ft) |
static CF.FeatureType |
getFeatureType(java.lang.String s) |
static CF.FeatureType |
getFeatureTypeFromGlobalAttribute(NetcdfFile ds) |
static CF.FeatureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CF.FeatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CF.FeatureType line
public static final CF.FeatureType point
public static final CF.FeatureType polygon
public static final CF.FeatureType profile
public static final CF.FeatureType timeSeries
public static final CF.FeatureType timeSeriesProfile
public static final CF.FeatureType trajectory
public static final CF.FeatureType trajectoryProfile
@Nullable public static FeatureType convert(CF.FeatureType cff)
@Nullable public static CF.FeatureType convert(FeatureType ft)
@Nullable public static CF.FeatureType getFeatureType(java.lang.String s)
@Nullable public static CF.FeatureType getFeatureTypeFromGlobalAttribute(NetcdfFile ds)
public static CF.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 namejava.lang.NullPointerException
- if the argument is nullpublic static CF.FeatureType[] values()
for (CF.FeatureType c : CF.FeatureType.values()) System.out.println(c);