Uses of Class
ucar.nc2.constants.FeatureType

Packages that use FeatureType
thredds.catalog Reads and writes THREDDS Dataset Inventory Catalog XML documents. 
ucar.nc2.constants Enumerated constants used throughout the library. 
ucar.nc2.dt Scientific data types package. 
ucar.nc2.ft Scientific feature types package 
 

Uses of FeatureType in thredds.catalog
 

Methods in thredds.catalog that return FeatureType
 FeatureType InvCatalogRef.getDataType()
           
 FeatureType InvDataset.getDataType()
          Get the DataType (which may be inherited from parent), or null .
 FeatureType InvDatasetImplProxy.getDataType()
           
 FeatureType ThreddsMetadata.getDataType()
           
 

Methods in thredds.catalog with parameters of type FeatureType
 void InvDatasetImpl.setDataType(FeatureType dataType)
           
 void ThreddsMetadata.setDataType(FeatureType dataType)
          Set dataType
 

Constructors in thredds.catalog with parameters of type FeatureType
DatasetFilter.ByDataType(FeatureType type)
           
InvDatasetImpl(InvDatasetImpl parent, java.lang.String name, FeatureType dataType, java.lang.String serviceName, java.lang.String urlPath)
          Constructor from Catalog XML info.
InvDatasetImpl(java.lang.String urlPath, FeatureType dataType, ServiceType stype)
          Construct an InvDatasetImpl which refers to a urlPath.
 

Uses of FeatureType in ucar.nc2.constants
 

Methods in ucar.nc2.constants that return FeatureType
static FeatureType FeatureType.getType(java.lang.String name)
          Find the FeatureType that matches this name.
static FeatureType FeatureType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FeatureType[] FeatureType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in ucar.nc2.constants with parameters of type FeatureType
static CF.FeatureType CF.FeatureType.convert(FeatureType ft)
           
 

Uses of FeatureType in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return FeatureType
 FeatureType TypedDatasetFactoryIF.getScientificDataType()
          What kind of cientific data type will this return?
 

Methods in ucar.nc2.dt with parameters of type FeatureType
static TypedDataset TypedDatasetFactory.open(FeatureType datatype, NetcdfDataset ncd, CancelTask task, java.lang.StringBuilder errlog)
          Open a dataset as a TypedDataset.
static TypedDataset TypedDatasetFactory.open(FeatureType datatype, java.lang.String location, CancelTask task, java.lang.StringBuilder errlog)
          Open a dataset as a TypedDataset.
static void TypedDatasetFactory.registerFactory(FeatureType datatype, java.lang.Class c)
          Register a class that implements a TypedDatasetFactoryIF.
static void TypedDatasetFactory.registerFactory(FeatureType datatype, java.lang.String className)
          Register a class that implements a TypedDatasetFactoryIF.
 

Uses of FeatureType in ucar.nc2.ft
 

Methods in ucar.nc2.ft that return FeatureType
static FeatureType FeatureDatasetFactoryManager.findFeatureType(NetcdfDataset ncd)
          Try to determine the feature type of the dataset, by looking at its metadata.
 FeatureType FeatureCollection.getCollectionFeatureType()
          All features in this collection have this feature type
 FeatureType FeatureDataset.getFeatureType()
          Contains collections of this FeatureType.
 FeatureType[] FeatureDatasetFactory.getFeatureType()
          This Factory can open these types of Feature datasets.
 

Methods in ucar.nc2.ft with parameters of type FeatureType
static boolean FeatureDatasetFactoryManager.featureTypeOk(FeatureType want, FeatureType facType)
          Determine if factory type matches wanted feature type.
 java.lang.Object FeatureDatasetFactory.isMine(FeatureType wantFeatureType, NetcdfDataset ncd, java.util.Formatter errlog)
          Determine if the factory can open this dataset as an instance of the given feature type
 FeatureDataset FeatureDatasetFactory.open(FeatureType ftype, NetcdfDataset ncd, java.lang.Object analysis, CancelTask task, java.util.Formatter errlog)
          Open a NetcdfDataset as a FeatureDataset.
static FeatureDataset FeatureDatasetFactoryManager.open(FeatureType wantFeatureType, java.lang.String location, CancelTask task, java.util.Formatter errlog)
          Open a dataset as a FeatureDataset.
static void FeatureDatasetFactoryManager.registerFactory(FeatureType datatype, java.lang.Class c)
          Register a class that implements a FeatureDatasetFactory.
static void FeatureDatasetFactoryManager.registerFactory(FeatureType datatype, java.lang.String className)
          Register a class that implements a FeatureDatasetFactory.
static FeatureDataset FeatureDatasetFactoryManager.wrap(FeatureType wantFeatureType, NetcdfDataset ncd, CancelTask task, java.util.Formatter errlog)
          Wrap a NetcdfDataset as a FeatureDataset.