Package ucar.nc2.dataset
Interface VariableEnhanced
-
- All Superinterfaces:
Enhancements
- All Known Implementing Classes:
CoordinateAxis,CoordinateAxis1D,CoordinateAxis1DTime,CoordinateAxis2D,SequenceDS,StructureDS,StructurePseudo2Dim,StructurePseudoDS,VariableDS
public interface VariableEnhanced extends Enhancements
Interface to an "enhanced Variable", implemented by the ucar.nc2.dataset package.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidclearCoordinateSystems()Deprecated.do not usevoidenhance(Set<NetcdfDataset.Enhance> mode)Deprecated.do not useStringgetFullName()StringgetOriginalName()VariablegetOriginalVariable()StringgetShortName()voidsetOriginalVariable(Variable orgVar)Deprecated.do not usevoidsetUnitsString(String units)Deprecated.do not use-
Methods inherited from interface ucar.nc2.dataset.Enhancements
addCoordinateSystem, getCoordinateSystems, getDescription, getUnitsString, removeCoordinateSystem
-
-
-
-
Method Detail
-
getFullName
String getFullName()
-
getShortName
String getShortName()
-
getOriginalVariable
Variable getOriginalVariable()
-
getOriginalName
String getOriginalName()
-
setOriginalVariable
@Deprecated void setOriginalVariable(Variable orgVar)
Deprecated.do not use
-
setUnitsString
@Deprecated void setUnitsString(String units)
Deprecated.do not useSet the Unit String for this Variable. Default is to use the CDM.UNITS attribute.- Parameters:
units- unit string
-
enhance
@Deprecated void enhance(Set<NetcdfDataset.Enhance> mode)
Deprecated.do not useEnhance using the given set of NetcdfDataset.Enhance
-
clearCoordinateSystems
@Deprecated void clearCoordinateSystems()
Deprecated.do not useclear previous coordinate systems. if any
-
-