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

gov.nasa.arc.pds.xml.generated.DDAttribute 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.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The DD_Attribute class defines an attribute for
 *         a data dictionary.
 * 
 * 

Java class for DD_Attribute complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="DD_Attribute">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name"/>
 *         <element name="version_id" type="{http://pds.nasa.gov/pds4/pds/v1}version_id"/>
 *         <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier"/>
 *         <element name="nillable_flag" type="{http://pds.nasa.gov/pds4/pds/v1}nillable_flag"/>
 *         <element name="submitter_name" type="{http://pds.nasa.gov/pds4/pds/v1}submitter_name"/>
 *         <element name="definition" type="{http://pds.nasa.gov/pds4/pds/v1}definition"/>
 *         <element name="comment" type="{http://pds.nasa.gov/pds4/pds/v1}comment" minOccurs="0"/>
 *         <element ref="{http://pds.nasa.gov/pds4/pds/v1}Internal_Reference" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Terminological_Entry" type="{http://pds.nasa.gov/pds4/pds/v1}Terminological_Entry" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DD_Value_Domain" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Value_Domain"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DD_Attribute", propOrder = { "name", "versionId", "localIdentifier", "nillableFlag", "submitterName", "definition", "comment", "internalReferences", "terminologicalEntries", "ddValueDomain" }) public class DDAttribute { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "version_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String versionId; @XmlElement(name = "local_identifier", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String localIdentifier; @XmlElement(name = "nillable_flag") protected boolean nillableFlag; @XmlElement(name = "submitter_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String submitterName; @XmlElement(required = true) protected String definition; protected String comment; @XmlElement(name = "Internal_Reference") protected List internalReferences; @XmlElement(name = "Terminological_Entry") protected List terminologicalEntries; @XmlElement(name = "DD_Value_Domain", required = true) protected DDValueDomain ddValueDomain; /** * 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 versionId property. * * @return * possible object is * {@link String } * */ public String getVersionId() { return versionId; } /** * Sets the value of the versionId property. * * @param value * allowed object is * {@link String } * */ public void setVersionId(String value) { this.versionId = value; } /** * Gets the value of the localIdentifier property. * * @return * possible object is * {@link String } * */ public String getLocalIdentifier() { return localIdentifier; } /** * Sets the value of the localIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setLocalIdentifier(String value) { this.localIdentifier = value; } /** * Gets the value of the nillableFlag property. * */ public boolean isNillableFlag() { return nillableFlag; } /** * Sets the value of the nillableFlag property. * */ public void setNillableFlag(boolean value) { this.nillableFlag = value; } /** * Gets the value of the submitterName property. * * @return * possible object is * {@link String } * */ public String getSubmitterName() { return submitterName; } /** * Sets the value of the submitterName property. * * @param value * allowed object is * {@link String } * */ public void setSubmitterName(String value) { this.submitterName = value; } /** * Gets the value of the definition property. * * @return * possible object is * {@link String } * */ public String getDefinition() { return definition; } /** * Sets the value of the definition property. * * @param value * allowed object is * {@link String } * */ public void setDefinition(String value) { this.definition = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the internalReferences property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the internalReferences property. * *

* For example, to add a new item, do as follows: *

     *    getInternalReferences().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InternalReference } * * */ public List getInternalReferences() { if (internalReferences == null) { internalReferences = new ArrayList(); } return this.internalReferences; } /** * Gets the value of the terminologicalEntries property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the terminologicalEntries property. * *

* For example, to add a new item, do as follows: *

     *    getTerminologicalEntries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TerminologicalEntry } * * */ public List getTerminologicalEntries() { if (terminologicalEntries == null) { terminologicalEntries = new ArrayList(); } return this.terminologicalEntries; } /** * Gets the value of the ddValueDomain property. * * @return * possible object is * {@link DDValueDomain } * */ public DDValueDomain getDDValueDomain() { return ddValueDomain; } /** * Sets the value of the ddValueDomain property. * * @param value * allowed object is * {@link DDValueDomain } * */ public void setDDValueDomain(DDValueDomain value) { this.ddValueDomain = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy