Package ucar.nc2.internal.ncml
Class NcmlNetcdfFileProvider
- java.lang.Object
-
- ucar.nc2.internal.ncml.NcmlNetcdfFileProvider
-
- All Implemented Interfaces:
NetcdfFileProvider
public class NcmlNetcdfFileProvider extends Object implements NetcdfFileProvider
-
-
Constructor Summary
Constructors Constructor Description NcmlNetcdfFileProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getProtocol()
The leading protocol string (without a trailing ":").boolean
isOwnerOf(String location)
Determine if this Provider owns this location.boolean
isOwnerOf(DatasetUrl url)
Determine if this Provider owns this DatasetUrl.NetcdfFile
open(String location, CancelTask cancelTask)
Open a location that this Provider is the owner of.
-
-
-
Method Detail
-
getProtocol
public String getProtocol()
Description copied from interface:NetcdfFileProvider
The leading protocol string (without a trailing ":").- Specified by:
getProtocol
in interfaceNetcdfFileProvider
-
open
public NetcdfFile open(String location, CancelTask cancelTask) throws IOException
Description copied from interface:NetcdfFileProvider
Open a location that this Provider is the owner of.- Specified by:
open
in interfaceNetcdfFileProvider
- Throws:
IOException
-
isOwnerOf
public boolean isOwnerOf(String location)
Description copied from interface:NetcdfFileProvider
Determine if this Provider owns this location.- Specified by:
isOwnerOf
in interfaceNetcdfFileProvider
-
isOwnerOf
public boolean isOwnerOf(DatasetUrl url)
Description copied from interface:NetcdfFileProvider
Determine if this Provider owns this DatasetUrl.- Specified by:
isOwnerOf
in interfaceNetcdfFileProvider
-
-