Uses of Class
ucar.nc2.dataset.NetcdfDataset.Enhance

Packages that use NetcdfDataset.Enhance
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
 

Uses of NetcdfDataset.Enhance in ucar.nc2.dataset
 

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

Methods in ucar.nc2.dataset that return types with arguments of type NetcdfDataset.Enhance
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.getCoordSysEnhanceMode()
          Get the default set of Enhancements, and add CoordSystems if not present
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.getDefaultEnhanceMode()
          Get the default set of Enhancements
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.getEnhanceAll()
           
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.getEnhanceDefault()
           
 java.util.EnumSet<NetcdfDataset.Enhance> NetcdfDataset.getEnhanceMode()
          Get the current state of dataset enhancement.
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.getEnhanceNone()
           
static java.util.Set<NetcdfDataset.Enhance> NetcdfDataset.parseEnhanceMode(java.lang.String enhanceMode)
          Find the set of Enhancements that matches the String.
 

Method parameters in ucar.nc2.dataset with type arguments of type NetcdfDataset.Enhance
static NetcdfDataset NetcdfDataset.acquireDataset(ucar.nc2.util.cache.FileFactory fac, java.lang.String location, java.util.Set<NetcdfDataset.Enhance> enhanceMode, int buffer_size, CancelTask cancelTask, java.lang.Object iospMessage)
          Same as openDataset, but file is acquired through the File Cache.
 void NetcdfDataset.enhance(java.util.Set<NetcdfDataset.Enhance> mode)
          recalc enhancement info
 void StructureDS.enhance(java.util.Set<NetcdfDataset.Enhance> mode)
          DO NOT USE DIRECTLY.
 void VariableDS.enhance(java.util.Set<NetcdfDataset.Enhance> mode)
          DO NOT USE DIRECTLY.
 void VariableEnhanced.enhance(java.util.Set<NetcdfDataset.Enhance> mode)
          Enhance using the given set of NetcdfDataset.Enhance
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, java.util.Set<NetcdfDataset.Enhance> enhanceMode, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
static void NetcdfDataset.setDefaultEnhanceMode(java.util.Set<NetcdfDataset.Enhance> mode)
          Set the default set of Enhancements to do for all subsequent dataset opens and acquires.
static NetcdfDataset NetcdfDataset.wrap(NetcdfFile ncfile, java.util.Set<NetcdfDataset.Enhance> enhanceMode)
          Make NetcdfFile into NetcdfDataset with given enhance mode
 

Constructor parameters in ucar.nc2.dataset with type arguments of type NetcdfDataset.Enhance
NetcdfDataset(NetcdfFile ncfile, java.util.Set<NetcdfDataset.Enhance> mode)
          Transform a NetcdfFile into a NetcdfDataset, optionally enhance it.