All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.arc.pds.xml.generated.Group Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The 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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Group", propOrder = { "name", "groupNumber", "repetitions", "fields", "groups", "description" }) @XmlSeeAlso({ GroupFieldBinary.class, GroupFieldCharacter.class, GroupFieldDelimited.class }) public class Group { @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "group_number") @XmlSchemaType(name = "unsignedLong") protected BigInteger groupNumber; @XmlElement(required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger repetitions; @XmlElement(required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger fields; @XmlElement(required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger groups; protected String description; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the groupNumber property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getGroupNumber() { return groupNumber; } /** * Sets the value of the groupNumber property. * * @param value * allowed object is * {@link BigInteger } * */ public void setGroupNumber(BigInteger value) { this.groupNumber = value; } /** * Gets the value of the repetitions property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getRepetitions() { return repetitions; } /** * Sets the value of the repetitions property. * * @param value * allowed object is * {@link BigInteger } * */ public void setRepetitions(BigInteger value) { this.repetitions = value; } /** * Gets the value of the fields property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFields() { return fields; } /** * Sets the value of the fields property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFields(BigInteger value) { this.fields = value; } /** * Gets the value of the groups property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getGroups() { return groups; } /** * Sets the value of the groups property. * * @param value * allowed object is * {@link BigInteger } * */ public void setGroups(BigInteger value) { this.groups = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy