Package thredds.featurecollection
Enum FeatureCollectionConfig.GribDatasetType
- java.lang.Object
-
- java.lang.Enum<FeatureCollectionConfig.GribDatasetType>
-
- thredds.featurecollection.FeatureCollectionConfig.GribDatasetType
-
- All Implemented Interfaces:
Serializable
,Comparable<FeatureCollectionConfig.GribDatasetType>
- Enclosing class:
- FeatureCollectionConfig
public static enum FeatureCollectionConfig.GribDatasetType extends Enum<FeatureCollectionConfig.GribDatasetType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureCollectionConfig.GribDatasetType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeatureCollectionConfig.GribDatasetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TwoD
public static final FeatureCollectionConfig.GribDatasetType TwoD
-
Best
public static final FeatureCollectionConfig.GribDatasetType Best
-
Analysis
public static final FeatureCollectionConfig.GribDatasetType Analysis
-
Files
public static final FeatureCollectionConfig.GribDatasetType Files
-
Latest
public static final FeatureCollectionConfig.GribDatasetType Latest
-
LatestFile
public static final FeatureCollectionConfig.GribDatasetType LatestFile
-
-
Method Detail
-
values
public static FeatureCollectionConfig.GribDatasetType[] 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 (FeatureCollectionConfig.GribDatasetType c : FeatureCollectionConfig.GribDatasetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureCollectionConfig.GribDatasetType 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
-
-