Uses of Class
ucar.nc2.Attribute

Packages that use Attribute
thredds.catalog Reads and writes THREDDS Dataset Inventory Catalog XML documents. 
ucar.nc2 Java-NetCDF API, version 2.2. 
ucar.nc2.dt Scientific data types package. 
 

Uses of Attribute in thredds.catalog
 

Methods in thredds.catalog with parameters of type Attribute
 void ThreddsMetadata.Variable.setVocabularyId(Attribute id)
           
 

Uses of Attribute in ucar.nc2
 

Methods in ucar.nc2 that return Attribute
 Attribute VariableIF.findAttribute(java.lang.String attName)
           
 Attribute Variable.findAttribute(java.lang.String name)
          Find an Attribute by name.
 Attribute Group.findAttribute(java.lang.String name)
          Find an Attribute in this Group by its name.
 Attribute VariableSimpleIF.findAttributeIgnoreCase(java.lang.String name)
          Return the attribute for the variable with the given name, ignoring case.
 Attribute VariableIF.findAttributeIgnoreCase(java.lang.String attName)
           
 Attribute Variable.findAttributeIgnoreCase(java.lang.String name)
          Find an Attribute by name, ignoring the case.
 Attribute Group.findAttributeIgnoreCase(java.lang.String name)
          Find an Attribute in this Group by its name, ignore case.
 Attribute NetcdfFile.findGlobalAttribute(java.lang.String name)
          Look up global Attribute by (full) name.
 Attribute NetcdfFile.findGlobalAttributeIgnoreCase(java.lang.String name)
          Look up global Attribute by name, ignore case.
 

Methods in ucar.nc2 with parameters of type Attribute
 void Variable.addAttribute(Attribute att)
          Add new or replace old if has same name
 void Group.addAttribute(Attribute att)
          Add new Attribute; replace old if has same name.
 void NetcdfFile.addAttribute(Group g, Attribute att)
          Add a group attribute.
 void NetcdfFileWriteable.addGlobalAttribute(Attribute att)
          Add a Global attribute to the file.
 void NetcdfFileWriteable.addVariableAttribute(java.lang.String varName, Attribute att)
          Add an attribute to the named Variable.
 void NetcdfFile.addVariableAttribute(Variable v, Attribute att)
          Add a variable attribute.
 boolean Variable.remove(Attribute a)
          Remove an Attribute : uses the attribute hashCode to find it.
 boolean Group.remove(Attribute a)
          Remove an Attribute : uses the attribute hashCode to find it.
 void NetcdfFileWriteable.updateAttribute(Variable v2, Attribute att)
          Update the value of an existing attribute.
 void IOServiceProviderWriter.updateAttribute(Variable v2, Attribute att)
          Update the value of an existing attribute.
 void FileWriter.writeAttribute(java.lang.String varName, Attribute att)
          Write a Variable attribute to the file.
 void FileWriter.writeGlobalAttribute(Attribute att)
          Write a global attribute to the file.
 

Constructors in ucar.nc2 with parameters of type Attribute
Attribute(java.lang.String name, Attribute from)
          Copy constructor
 

Uses of Attribute in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return Attribute
 Attribute VariableSimpleAdapter.findAttributeIgnoreCase(java.lang.String attName)
           
 Attribute GridDatatype.findAttributeIgnoreCase(java.lang.String name)
          Convenience function; lookup Attribute by name.
 Attribute TypedDatasetImpl.findGlobalAttributeIgnoreCase(java.lang.String name)
           
 Attribute TypedDataset.findGlobalAttributeIgnoreCase(java.lang.String name)
          Return the global attribute with the given name, ingnoring case.