Package gov.nasa.arc.pds.xml.generated
Class Group
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.Group
 
- 
- Direct Known Subclasses:
- GroupFieldBinary,- GroupFieldCharacter,- GroupFieldDelimited
 
 public class Group extends java.lang.ObjectThe Group class defines a group of (repeating) fields and, possibly, (sub) groups; it is the parent class of all specific group classes.Java class for Group complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="Group"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name" minOccurs="0"/> <element name="group_number" type="{http://pds.nasa.gov/pds4/pds/v1}group_number" minOccurs="0"/> <element name="repetitions" type="{http://pds.nasa.gov/pds4/pds/v1}repetitions"/> <element name="fields" type="{http://pds.nasa.gov/pds4/pds/v1}fields"/> <element name="groups" type="{http://pds.nasa.gov/pds4/pds/v1}groups"/> <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.math.BigIntegerfieldsprotected java.math.BigIntegergroupNumberprotected java.math.BigIntegergroupsprotected java.lang.Stringnameprotected java.math.BigIntegerrepetitions
 - 
Constructor SummaryConstructors Constructor Description Group()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.java.math.BigIntegergetFields()Gets the value of the fields property.java.math.BigIntegergetGroupNumber()Gets the value of the groupNumber property.java.math.BigIntegergetGroups()Gets the value of the groups property.java.lang.StringgetName()Gets the value of the name property.java.math.BigIntegergetRepetitions()Gets the value of the repetitions property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetFields(java.math.BigInteger value)Sets the value of the fields property.voidsetGroupNumber(java.math.BigInteger value)Sets the value of the groupNumber property.voidsetGroups(java.math.BigInteger value)Sets the value of the groups property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetRepetitions(java.math.BigInteger value)Sets the value of the repetitions property.
 
- 
- 
- 
Field Detail- 
nameprotected java.lang.String name 
 - 
groupNumberprotected java.math.BigInteger groupNumber 
 - 
repetitionsprotected java.math.BigInteger repetitions 
 - 
fieldsprotected java.math.BigInteger fields 
 - 
groupsprotected java.math.BigInteger groups 
 - 
descriptionprotected java.lang.String description 
 
- 
 - 
Method Detail- 
getNamepublic java.lang.String getName() Gets the value of the name property.- Returns:
- possible object is
     String
 
 - 
setNamepublic void setName(java.lang.String value) Sets the value of the name property.- Parameters:
- value- allowed object is- String
 
 - 
getGroupNumberpublic java.math.BigInteger getGroupNumber() Gets the value of the groupNumber property.- Returns:
- possible object is
     BigInteger
 
 - 
setGroupNumberpublic void setGroupNumber(java.math.BigInteger value) Sets the value of the groupNumber property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
getRepetitionspublic java.math.BigInteger getRepetitions() Gets the value of the repetitions property.- Returns:
- possible object is
     BigInteger
 
 - 
setRepetitionspublic void setRepetitions(java.math.BigInteger value) Sets the value of the repetitions property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
getFieldspublic java.math.BigInteger getFields() Gets the value of the fields property.- Returns:
- possible object is
     BigInteger
 
 - 
setFieldspublic void setFields(java.math.BigInteger value) Sets the value of the fields property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
getGroupspublic java.math.BigInteger getGroups() Gets the value of the groups property.- Returns:
- possible object is
     BigInteger
 
 - 
setGroupspublic void setGroups(java.math.BigInteger value) Sets the value of the groups property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
getDescriptionpublic java.lang.String getDescription() Gets the value of the description property.- Returns:
- possible object is
     String
 
 - 
setDescriptionpublic void setDescription(java.lang.String value) Sets the value of the description property.- Parameters:
- value- allowed object is- String
 
 
- 
 
-