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 StringgetProtocol()The leading protocol string (without a trailing ":").booleanisOwnerOf(String location)Determine if this Provider owns this location.booleanisOwnerOf(DatasetUrl url)Determine if this Provider owns this DatasetUrl.NetcdfFileopen(String location, CancelTask cancelTask)Open a location that this Provider is the owner of.
-
-
-
Method Detail
-
getProtocol
public String getProtocol()
Description copied from interface:NetcdfFileProviderThe leading protocol string (without a trailing ":").- Specified by:
getProtocolin interfaceNetcdfFileProvider
-
open
public NetcdfFile open(String location, CancelTask cancelTask) throws IOException
Description copied from interface:NetcdfFileProviderOpen a location that this Provider is the owner of.- Specified by:
openin interfaceNetcdfFileProvider- Throws:
IOException
-
isOwnerOf
public boolean isOwnerOf(String location)
Description copied from interface:NetcdfFileProviderDetermine if this Provider owns this location.- Specified by:
isOwnerOfin interfaceNetcdfFileProvider
-
isOwnerOf
public boolean isOwnerOf(DatasetUrl url)
Description copied from interface:NetcdfFileProviderDetermine if this Provider owns this DatasetUrl.- Specified by:
isOwnerOfin interfaceNetcdfFileProvider
-
-