Package ucar.nc2.dt.grid.internal.spi
Interface GridDatasetProvider
-
public interface GridDatasetProvider
A special SPI to register GridDataset providers.FOR INTERNAL USE ONLY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
isMine(String location, Set<NetcdfDataset.Enhance> enhanceMode)
default boolean
isMine(NetcdfDataset ncd)
default GridDataset
open(String location)
GridDataset
open(String location, Set<NetcdfDataset.Enhance> enhanceMode)
default GridDataset
open(NetcdfDataset ncd)
GridDataset
open(NetcdfDataset ncd, Formatter parseInfo)
-
-
-
Method Detail
-
isMine
default boolean isMine(NetcdfDataset ncd)
-
isMine
default boolean isMine(String location, Set<NetcdfDataset.Enhance> enhanceMode)
-
open
@Nullable default GridDataset open(String location) throws IOException
- Throws:
IOException
-
open
@Nullable GridDataset open(String location, Set<NetcdfDataset.Enhance> enhanceMode) throws IOException
- Throws:
IOException
-
open
@Nullable default GridDataset open(NetcdfDataset ncd) throws IOException
- Throws:
IOException
-
open
@Nullable GridDataset open(NetcdfDataset ncd, Formatter parseInfo) throws IOException
- Throws:
IOException
-
-