public class TypedDatasetFactory extends Object
| Constructor and Description |
|---|
TypedDatasetFactory()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static TypedDataset |
open(FeatureType datatype,
NetcdfDataset ncd,
CancelTask task,
StringBuilder errlog)
Deprecated.
Open a dataset as a TypedDataset.
|
static TypedDataset |
open(FeatureType datatype,
String location,
CancelTask task,
StringBuilder errlog)
Deprecated.
Open a dataset as a TypedDataset.
|
static void |
registerFactory(FeatureType datatype,
Class c)
Deprecated.
Register a class that implements a TypedDatasetFactoryIF.
|
static void |
registerFactory(FeatureType datatype,
String className)
Deprecated.
Register a class that implements a TypedDatasetFactoryIF.
|
public static void registerFactory(FeatureType datatype, String className) throws ClassNotFoundException
className - name of class that implements TypedDatasetFactoryIF.datatype - scientific data typeClassNotFoundException - if loading errorpublic static void registerFactory(FeatureType datatype, Class c)
datatype - scientific data typec - class that implements TypedDatasetFactoryIF.public static TypedDataset open(FeatureType datatype, String location, CancelTask task, StringBuilder errlog) throws IOException
datatype - open this kind of Typed Dataset; may be null, which means search all factories.
If datatype is not null, only return correct TypedDataset (eg PointObsDataset for DataType.POINT).location - URL or file location of the datasettask - user may cancelerrlog - place errors here, may not be nullIOException - on io errorpublic static TypedDataset open(FeatureType datatype, NetcdfDataset ncd, CancelTask task, StringBuilder errlog) throws IOException
datatype - open this kind of Typed Dataset; may be null, which means search all factories.
If datatype is not null, only return correct TypedDataset (eg PointObsDataset for DataType.POINT).ncd - the NetcdfDataset to wrap in a TypedDatasettask - user may cancelerrlog - place errors here, may not be nullIOException - on io errorCopyright © 1999–2015 UCAR/Unidata. All rights reserved.