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 void
clearCoordinateSystems()
Deprecated.do not usevoid
enhance(Set<NetcdfDataset.Enhance> mode)
Deprecated.do not useString
getFullName()
String
getOriginalName()
Variable
getOriginalVariable()
String
getShortName()
void
setOriginalVariable(Variable orgVar)
Deprecated.do not usevoid
setUnitsString(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
-
-