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

gov.nasa.arc.pds.xml.generated.PrimaryResultSummary 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 Primary_Result_Summary class provides a
 *         high-level description of the types of products included in the
 *         collection or bundle
 * 
 * 

Java class for Primary_Result_Summary complex type. * *

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

 * <complexType name="Primary_Result_Summary">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="type" type="{http://pds.nasa.gov/pds4/pds/v1}type" minOccurs="0"/>
 *         <element name="purpose" type="{http://pds.nasa.gov/pds4/pds/v1}purpose" maxOccurs="unbounded"/>
 *         <element name="data_regime" type="{http://pds.nasa.gov/pds4/pds/v1}data_regime" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="processing_level" type="{http://pds.nasa.gov/pds4/pds/v1}processing_level" maxOccurs="unbounded"/>
 *         <element name="processing_level_id" type="{http://pds.nasa.gov/pds4/pds/v1}processing_level_id" minOccurs="0"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
 *         <element name="Science_Facets" type="{http://pds.nasa.gov/pds4/pds/v1}Science_Facets" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Primary_Result_Summary", propOrder = { "type", "purposes", "dataRegimes", "processingLevels", "processingLevelId", "description", "scienceFacets" }) public class PrimaryResultSummary { @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String type; @XmlElement(name = "purpose", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List purposes; @XmlElement(name = "data_regime") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List dataRegimes; @XmlElement(name = "processing_level", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected List processingLevels; @XmlElement(name = "processing_level_id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String processingLevelId; protected String description; @XmlElement(name = "Science_Facets") protected List scienceFacets; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the purposes 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 purposes property. * *

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

     *    getPurposes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getPurposes() { if (purposes == null) { purposes = new ArrayList(); } return this.purposes; } /** * Gets the value of the dataRegimes 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 dataRegimes property. * *

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

     *    getDataRegimes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDataRegimes() { if (dataRegimes == null) { dataRegimes = new ArrayList(); } return this.dataRegimes; } /** * Gets the value of the processingLevels 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 processingLevels property. * *

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

     *    getProcessingLevels().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getProcessingLevels() { if (processingLevels == null) { processingLevels = new ArrayList(); } return this.processingLevels; } /** * Gets the value of the processingLevelId property. * * @return * possible object is * {@link String } * */ public String getProcessingLevelId() { return processingLevelId; } /** * Sets the value of the processingLevelId property. * * @param value * allowed object is * {@link String } * */ public void setProcessingLevelId(String value) { this.processingLevelId = 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; } /** * Gets the value of the scienceFacets 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 scienceFacets property. * *

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

     *    getScienceFacets().add(newItem);
     * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy