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

gov.nasa.arc.pds.xml.generated.TerminologicalEntry 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The terminological_entry class provides the name
 *         (designation) and definition of the attribute in a specified
 *         natural language.
 * 
 * 

Java class for Terminological_Entry complex type. * *

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

 * <complexType name="Terminological_Entry">
 *   <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="definition" type="{http://pds.nasa.gov/pds4/pds/v1}definition"/>
 *         <element name="language" type="{http://pds.nasa.gov/pds4/pds/v1}language"/>
 *         <element name="preferred_flag" type="{http://pds.nasa.gov/pds4/pds/v1}preferred_flag"/>
 *         <element name="skos_relation_name" type="{http://pds.nasa.gov/pds4/pds/v1}skos_relation_name" minOccurs="0"/>
 *         <element name="instance_id" type="{http://pds.nasa.gov/pds4/pds/v1}instance_id" minOccurs="0"/>
 *         <element name="External_Reference_Extended" type="{http://pds.nasa.gov/pds4/pds/v1}External_Reference_Extended" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Terminological_Entry", propOrder = { "name", "definition", "language", "preferredFlag", "skosRelationName", "instanceId", "externalReferenceExtendeds" }) public class TerminologicalEntry { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(required = true) protected String definition; @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String language; @XmlElement(name = "preferred_flag") protected boolean preferredFlag; @XmlElement(name = "skos_relation_name") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String skosRelationName; @XmlElement(name = "instance_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String instanceId; @XmlElement(name = "External_Reference_Extended") protected List externalReferenceExtendeds; /** * 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 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 language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the preferredFlag property. * */ public boolean isPreferredFlag() { return preferredFlag; } /** * Sets the value of the preferredFlag property. * */ public void setPreferredFlag(boolean value) { this.preferredFlag = value; } /** * Gets the value of the skosRelationName property. * * @return * possible object is * {@link String } * */ public String getSkosRelationName() { return skosRelationName; } /** * Sets the value of the skosRelationName property. * * @param value * allowed object is * {@link String } * */ public void setSkosRelationName(String value) { this.skosRelationName = value; } /** * Gets the value of the instanceId property. * * @return * possible object is * {@link String } * */ public String getInstanceId() { return instanceId; } /** * Sets the value of the instanceId property. * * @param value * allowed object is * {@link String } * */ public void setInstanceId(String value) { this.instanceId = value; } /** * Gets the value of the externalReferenceExtendeds 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 externalReferenceExtendeds property. * *

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

     *    getExternalReferenceExtendeds().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ExternalReferenceExtended } * * */ public List getExternalReferenceExtendeds() { if (externalReferenceExtendeds == null) { externalReferenceExtendeds = new ArrayList(); } return this.externalReferenceExtendeds; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy