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. 
ucar.nc2.iosp.grid   
ucar.nc2.iosp.hdf4 I/O Service Provider for HDF-4 format files 
 

Uses of Group in ucar.nc2
 

Fields in ucar.nc2 declared as Group
protected  Group Variable.group
           
protected  Group Group.parent
           
protected  Group NetcdfFile.rootGroup
           
 

Fields in ucar.nc2 with type parameters of type Group
protected  java.util.List<Group> Group.groups
           
 

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 NetcdfFile.findGroup(java.lang.String fullNameEscaped)
          Find a Group, with the specified (full) name.
 Group Group.findGroup(java.lang.String groupShortName)
          Retrieve the Group with the specified (short) name.
 Group Dimension.getGroup()
          Get the Group that owns this Dimension.
 Group VariableIF.getParentGroup()
           
 Group Variable.getParentGroup()
          Get the containing Group.
 Group Group.getParentGroup()
          Get its parent Group, or null if its the root group.
 Group NetcdfFile.getRootGroup()
          Get the root group.
protected  Group NetcdfFile.makeRootGroup()
           
 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?
protected static java.lang.String NetcdfFile.makeFullName(Group parent, Variable v)
           
protected static java.lang.String NetcdfFile.makeFullNameEscaped(Group parent, Variable v)
           
protected  java.lang.String NetcdfFile.makeFullNameWithString(Group parent, java.lang.String name)
           
 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 Variable.setParentGroup(Group group)
          Set the parent group.
 void Structure.setParentGroup(Group group)
          Set the parent group of this Structure, and all member variables.
 void Group.setParentGroup(Group parent)
          Set the Group's 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.
 

Uses of Group in ucar.nc2.iosp.grid
 

Methods in ucar.nc2.iosp.grid that return Group
 Group GridHorizCoordSys.getGroup()
          Get the group
 

Constructors in ucar.nc2.iosp.grid with parameters of type Group
GridHorizCoordSys(ucar.grid.GridDefRecord gds, ucar.grid.GridTableLookup lookup, Group g)
          Create a new GridHorizCoordSys with the grid definition and lookup
 

Uses of Group in ucar.nc2.iosp.hdf4
 

Methods in ucar.nc2.iosp.hdf4 with parameters of type Group
static void HdfEos.amendFromODL(NetcdfFile ncfile, Group eosGroup)
          Amend the given NetcdfFile with metadata from HDF-EOS structMetadata.