Package thredds.featurecollection
Enum FeatureCollectionType
- java.lang.Object
-
- java.lang.Enum<FeatureCollectionType>
-
- thredds.featurecollection.FeatureCollectionType
-
- All Implemented Interfaces:
Serializable
,Comparable<FeatureCollectionType>
public enum FeatureCollectionType extends Enum<FeatureCollectionType>
FeatureCollection Types- Since:
- 11/8/12
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FeatureType
getFeatureType()
static FeatureCollectionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeatureCollectionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GRIB1
public static final FeatureCollectionType GRIB1
-
GRIB2
public static final FeatureCollectionType GRIB2
-
GRID
public static final FeatureCollectionType GRID
-
FMRC
public static final FeatureCollectionType FMRC
-
Point
public static final FeatureCollectionType Point
-
Station
public static final FeatureCollectionType Station
-
Station_Profile
public static final FeatureCollectionType Station_Profile
-
-
Method Detail
-
values
public static FeatureCollectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeatureCollectionType c : FeatureCollectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureCollectionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getFeatureType
public FeatureType getFeatureType()
-
-