Uses of Class
ucar.nc2.Group

Packages that use Group
ucar.nc2 The public API to the Java-NetCDF library. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
 

Uses of Group in ucar.nc2
 

Methods in ucar.nc2 that return Group
 Group NetcdfFile.addGroup(Group parent, Group g)
          Add a group to the parent group.
 Group Group.commonParent(Group other)
          Get the common parent of this and the other group.
 Group Group.findGroup(java.lang.String groupShortName)
          Retrieve the Group with the specified (short) name.
 Group NetcdfFile.findGroup(java.lang.String fullNameEscaped)
          Find a Group, with the specified (full) name.
 Group Dimension.getGroup()
          Get the Group that owns this Dimension.
 Group Group.getParentGroup()
          Get its parent Group, or null if its the root group.
 Group Variable.getParentGroup()
          Get the containing Group.
 Group VariableIF.getParentGroup()
           
 Group NetcdfFile.getRootGroup()
          Get the root group.
 Group Group.setImmutable()
          Make this immutable.
 

Methods in ucar.nc2 that return types with arguments of type Group
 java.util.List<Group> Group.getGroups()
          Get the Groups contained directly in this Group.
 

Methods in ucar.nc2 with parameters of type Group
 Attribute NetcdfFile.addAttribute(Group parent, Attribute att)
          Add an attribute to a group.
 Dimension NetcdfFile.addDimension(Group parent, Dimension d)
          Add a shared Dimension to a Group.
 void Group.addGroup(Group g)
          Add a nested Group
 Group NetcdfFile.addGroup(Group parent, Group g)
          Add a group to the parent group.
 Variable NetcdfFile.addStringVariable(Group g, java.lang.String shortName, java.lang.String dims, int strlen)
          Create a new Variable of type Datatype.CHAR, and add to the given group.
 Variable NetcdfFile.addVariable(Group g, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a new Variable, and add to the given group.
 Variable NetcdfFile.addVariable(Group g, Variable v)
          Add a Variable to the given group.
 Group Group.commonParent(Group other)
          Get the common parent of this and the other group.
 boolean Group.isParent(Group other)
          Is this a parent of the other Group?
 boolean Group.remove(Group g)
          Remove an Attribute : uses the Group hashCode to find it.
 boolean NetcdfFile.removeDimension(Group g, java.lang.String dimName)
          Remove a shared Dimension from a Group by name.
 boolean NetcdfFile.removeVariable(Group g, java.lang.String varName)
          Remove a Variable from the given group by name.
 void Dimension.setGroup(Group g)
          Set the group
 void Group.setParentGroup(Group parent)
          Set the Group's parent Group
 void Structure.setParentGroup(Group group)
          Set the parent group of this Structure, and all member variables.
 void Variable.setParentGroup(Group group)
          Set the parent group.
 

Constructors in ucar.nc2 with parameters of type Group
Group(NetcdfFile ncfile, Group parent, java.lang.String shortName)
          Constructor
Sequence(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
           
Structure(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
           
StructurePseudo(NetcdfFile ncfile, Group group, java.lang.String shortName, Dimension dim)
          Make a Structure out of all Variables with the named dimension as their outermost dimension.
StructurePseudo(NetcdfFile ncfile, Group group, java.lang.String shortName, java.util.List<java.lang.String> varNames, Dimension dim)
          Make a Structure out of named Variables, each has the same named outermost dimension.
Variable(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
          Create a Variable.
Variable(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a Variable.
 

Uses of Group in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset that return Group
static Group DatasetConstructor.findGroup(NetcdfFile newFile, Group oldGroup)
          Find the Group in newFile that corresponds (by name) with oldGroup
 

Methods in ucar.nc2.dataset with parameters of type Group
 Variable NetcdfDataset.addVariable(Group g, Variable v)
           
static Group DatasetConstructor.findGroup(NetcdfFile newFile, Group oldGroup)
          Find the Group in newFile that corresponds (by name) with oldGroup
static void DatasetConstructor.transferGroupAttributes(Group src, Group target)
          Copy attributes from src to target, skip ones that already exist (by name)
 

Constructors in ucar.nc2.dataset with parameters of type Group
CoordinateAxis(NetcdfDataset ds, Group group, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
CoordinateAxis1D(NetcdfDataset ds, Group group, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
StructureDS(Group g, Structure orgVar)
          Create a StructureDS thats wraps a Structure
StructureDS(Group group, Structure parent, java.lang.String shortName, Structure orgVar)
          Wrap the given Structure, making it into a StructureDS.
StructureDS(NetcdfDataset ds, Group group, Structure parentStructure, java.lang.String shortName, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
VariableDS(Group group, Structure parent, java.lang.String shortName, Variable orgVar)
          Wrap the given Variable, making it into a VariableDS.
VariableDS(Group g, Variable orgVar, boolean enhance)
          Wrap the given Variable, making it into a VariableDS.
VariableDS(NetcdfDataset ds, Group group, Structure parentStructure, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when there's no underlying variable.