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

gov.nasa.arc.pds.xml.generated.SpecialConstants 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 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 Special Constants class provides a set of
 *         values used to indicate special cases that occur in the
 *         data.
 * 
 * 

Java class for Special_Constants complex type. * *

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

 * <complexType name="Special_Constants">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="saturated_constant" type="{http://pds.nasa.gov/pds4/pds/v1}saturated_constant" minOccurs="0"/>
 *         <element name="missing_constant" type="{http://pds.nasa.gov/pds4/pds/v1}missing_constant" minOccurs="0"/>
 *         <element name="error_constant" type="{http://pds.nasa.gov/pds4/pds/v1}error_constant" minOccurs="0"/>
 *         <element name="invalid_constant" type="{http://pds.nasa.gov/pds4/pds/v1}invalid_constant" minOccurs="0"/>
 *         <element name="unknown_constant" type="{http://pds.nasa.gov/pds4/pds/v1}unknown_constant" minOccurs="0"/>
 *         <element name="not_applicable_constant" type="{http://pds.nasa.gov/pds4/pds/v1}not_applicable_constant" minOccurs="0"/>
 *         <element name="valid_maximum" type="{http://pds.nasa.gov/pds4/pds/v1}valid_maximum" minOccurs="0"/>
 *         <element name="high_instrument_saturation" type="{http://pds.nasa.gov/pds4/pds/v1}high_instrument_saturation" minOccurs="0"/>
 *         <element name="high_representation_saturation" type="{http://pds.nasa.gov/pds4/pds/v1}high_representation_saturation" minOccurs="0"/>
 *         <element name="valid_minimum" type="{http://pds.nasa.gov/pds4/pds/v1}valid_minimum" minOccurs="0"/>
 *         <element name="low_instrument_saturation" type="{http://pds.nasa.gov/pds4/pds/v1}low_instrument_saturation" minOccurs="0"/>
 *         <element name="low_representation_saturation" type="{http://pds.nasa.gov/pds4/pds/v1}low_representation_saturation" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Special_Constants", propOrder = { "saturatedConstant", "missingConstant", "errorConstant", "invalidConstant", "unknownConstant", "notApplicableConstant", "validMaximum", "highInstrumentSaturation", "highRepresentationSaturation", "validMinimum", "lowInstrumentSaturation", "lowRepresentationSaturation" }) public class SpecialConstants { @XmlElement(name = "saturated_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String saturatedConstant; @XmlElement(name = "missing_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String missingConstant; @XmlElement(name = "error_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String errorConstant; @XmlElement(name = "invalid_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String invalidConstant; @XmlElement(name = "unknown_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String unknownConstant; @XmlElement(name = "not_applicable_constant") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String notApplicableConstant; @XmlElement(name = "valid_maximum") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String validMaximum; @XmlElement(name = "high_instrument_saturation") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String highInstrumentSaturation; @XmlElement(name = "high_representation_saturation") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String highRepresentationSaturation; @XmlElement(name = "valid_minimum") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String validMinimum; @XmlElement(name = "low_instrument_saturation") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String lowInstrumentSaturation; @XmlElement(name = "low_representation_saturation") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String lowRepresentationSaturation; /** * Gets the value of the saturatedConstant property. * * @return * possible object is * {@link String } * */ public String getSaturatedConstant() { return saturatedConstant; } /** * Sets the value of the saturatedConstant property. * * @param value * allowed object is * {@link String } * */ public void setSaturatedConstant(String value) { this.saturatedConstant = value; } /** * Gets the value of the missingConstant property. * * @return * possible object is * {@link String } * */ public String getMissingConstant() { return missingConstant; } /** * Sets the value of the missingConstant property. * * @param value * allowed object is * {@link String } * */ public void setMissingConstant(String value) { this.missingConstant = value; } /** * Gets the value of the errorConstant property. * * @return * possible object is * {@link String } * */ public String getErrorConstant() { return errorConstant; } /** * Sets the value of the errorConstant property. * * @param value * allowed object is * {@link String } * */ public void setErrorConstant(String value) { this.errorConstant = value; } /** * Gets the value of the invalidConstant property. * * @return * possible object is * {@link String } * */ public String getInvalidConstant() { return invalidConstant; } /** * Sets the value of the invalidConstant property. * * @param value * allowed object is * {@link String } * */ public void setInvalidConstant(String value) { this.invalidConstant = value; } /** * Gets the value of the unknownConstant property. * * @return * possible object is * {@link String } * */ public String getUnknownConstant() { return unknownConstant; } /** * Sets the value of the unknownConstant property. * * @param value * allowed object is * {@link String } * */ public void setUnknownConstant(String value) { this.unknownConstant = value; } /** * Gets the value of the notApplicableConstant property. * * @return * possible object is * {@link String } * */ public String getNotApplicableConstant() { return notApplicableConstant; } /** * Sets the value of the notApplicableConstant property. * * @param value * allowed object is * {@link String } * */ public void setNotApplicableConstant(String value) { this.notApplicableConstant = value; } /** * Gets the value of the validMaximum property. * * @return * possible object is * {@link String } * */ public String getValidMaximum() { return validMaximum; } /** * Sets the value of the validMaximum property. * * @param value * allowed object is * {@link String } * */ public void setValidMaximum(String value) { this.validMaximum = value; } /** * Gets the value of the highInstrumentSaturation property. * * @return * possible object is * {@link String } * */ public String getHighInstrumentSaturation() { return highInstrumentSaturation; } /** * Sets the value of the highInstrumentSaturation property. * * @param value * allowed object is * {@link String } * */ public void setHighInstrumentSaturation(String value) { this.highInstrumentSaturation = value; } /** * Gets the value of the highRepresentationSaturation property. * * @return * possible object is * {@link String } * */ public String getHighRepresentationSaturation() { return highRepresentationSaturation; } /** * Sets the value of the highRepresentationSaturation property. * * @param value * allowed object is * {@link String } * */ public void setHighRepresentationSaturation(String value) { this.highRepresentationSaturation = value; } /** * Gets the value of the validMinimum property. * * @return * possible object is * {@link String } * */ public String getValidMinimum() { return validMinimum; } /** * Sets the value of the validMinimum property. * * @param value * allowed object is * {@link String } * */ public void setValidMinimum(String value) { this.validMinimum = value; } /** * Gets the value of the lowInstrumentSaturation property. * * @return * possible object is * {@link String } * */ public String getLowInstrumentSaturation() { return lowInstrumentSaturation; } /** * Sets the value of the lowInstrumentSaturation property. * * @param value * allowed object is * {@link String } * */ public void setLowInstrumentSaturation(String value) { this.lowInstrumentSaturation = value; } /** * Gets the value of the lowRepresentationSaturation property. * * @return * possible object is * {@link String } * */ public String getLowRepresentationSaturation() { return lowRepresentationSaturation; } /** * Sets the value of the lowRepresentationSaturation property. * * @param value * allowed object is * {@link String } * */ public void setLowRepresentationSaturation(String value) { this.lowRepresentationSaturation = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy