Uses of Class
ucar.nc2.Attribute

Packages that use Attribute
thredds.catalog Reads and writes THREDDS Dataset Inventory Catalog XML documents. 
ucar.nc2 The public API to the Java-NetCDF library. 
ucar.nc2.dt Scientific data types package. 
ucar.nc2.ft Scientific feature 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 Variable.addAttribute(Attribute att)
          Add new or replace old if has same name
 Attribute NetcdfFile.addAttribute(Group parent, Attribute att)
          Add an attribute to a group.
 Attribute NetcdfFileWriteable.addGlobalAttribute(Attribute att)
          Add a Global attribute to the file.
 Attribute NetcdfFileWriteable.addGlobalAttribute(java.lang.String name, Array values)
          Add a Global attribute of type Array to the file.
 Attribute NetcdfFileWriteable.addGlobalAttribute(java.lang.String name, java.lang.Number value)
          Add a Global attribute of type Number to the file.
 Attribute NetcdfFileWriteable.addGlobalAttribute(java.lang.String name, java.lang.String value)
          Add a Global attribute of type String to the file.
 Attribute NetcdfFile.addVariableAttribute(Variable v, Attribute att)
          Add a variable attribute.
 Attribute NetcdfFileWriteable.deleteGlobalAttribute(java.lang.String attName)
          Delete a global Attribute.
 Attribute NetcdfFileWriteable.deleteVariableAttribute(java.lang.String varName, java.lang.String attName)
          Delete a variable 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)
          find the attribute for the variable with the given name, ignoring case.
 Attribute VariableSimpleAdapter.findAttributeIgnoreCase(java.lang.String attName)
           
 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.
 Attribute NetcdfFileWriteable.renameGlobalAttribute(java.lang.String oldName, java.lang.String newName)
          Rename a global Attribute.
 Attribute NetcdfFileWriteable.renameVariableAttribute(java.lang.String varName, java.lang.String attName, java.lang.String newName)
          Rename a variable Attribute.
 

Methods in ucar.nc2 that return types with arguments of type Attribute
 java.util.List<Attribute> VariableSimpleIF.getAttributes()
          Attributes for the variable.
 java.util.List<Attribute> VariableSimpleAdapter.getAttributes()
           
 java.util.List<Attribute> VariableIF.getAttributes()
           
 java.util.List<Attribute> Variable.getAttributes()
          Returns the set of attributes for this variable.
 java.util.List<Attribute> Group.getAttributes()
          Get the set of attributes contained directly in this Group.
 java.util.List<Attribute> NetcdfFile.getGlobalAttributes()
          Returns the set of global attributes associated with this file.
 

Methods in ucar.nc2 with parameters of type Attribute
 Attribute 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.
 Attribute NetcdfFile.addAttribute(Group parent, Attribute att)
          Add an attribute to a group.
 Attribute 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.
 Attribute 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 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 VariableSimpleSubclass.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)
           
 

Methods in ucar.nc2.dt that return types with arguments of type Attribute
 java.util.List<Attribute> VariableSimpleSubclass.getAttributes()
           
 java.util.List<Attribute> GridDatatype.getAttributes()
          Get a List of Attribute specific to the Grid
 java.util.List<Attribute> TypedDatasetImpl.getGlobalAttributes()
           
 java.util.List<Attribute> TypedDataset.getGlobalAttributes()
          List of global attributes.
 

Uses of Attribute in ucar.nc2.ft
 

Methods in ucar.nc2.ft that return Attribute
 Attribute FeatureDatasetImpl.findGlobalAttributeIgnoreCase(java.lang.String name)
           
 Attribute FeatureDataset.findGlobalAttributeIgnoreCase(java.lang.String name)
          Return the global attribute with the given name, ignoring case.
 

Methods in ucar.nc2.ft that return types with arguments of type Attribute
 java.util.List<Attribute> FeatureDatasetImpl.getGlobalAttributes()
           
 java.util.List<Attribute> FeatureDataset.getGlobalAttributes()
          List of global attributes.