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

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


/**
 * The Uniformly_Sampled class provides parameters
 *         for a uniformly sampled table.
 * 
 * 

Java class for Uniformly_Sampled complex type. * *

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

 * <complexType name="Uniformly_Sampled">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sampling_parameter_name" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameter_name"/>
 *         <element name="sampling_parameter_interval" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameter_interval"/>
 *         <element name="sampling_parameter_unit" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameter_unit"/>
 *         <element name="first_sampling_parameter_value" type="{http://pds.nasa.gov/pds4/pds/v1}first_sampling_parameter_value"/>
 *         <element name="last_sampling_parameter_value" type="{http://pds.nasa.gov/pds4/pds/v1}last_sampling_parameter_value"/>
 *         <element name="sampling_parameter_scale" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameter_scale"/>
 *         <element name="sampling_parameter_base" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameter_base" minOccurs="0"/>
 *         <element name="sampling_parameters" type="{http://pds.nasa.gov/pds4/pds/v1}sampling_parameters" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Uniformly_Sampled", propOrder = { "samplingParameterName", "samplingParameterInterval", "samplingParameterUnit", "firstSamplingParameterValue", "lastSamplingParameterValue", "samplingParameterScale", "samplingParameterBase", "samplingParameters" }) public class UniformlySampled { @XmlElement(name = "sampling_parameter_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String samplingParameterName; @XmlElement(name = "sampling_parameter_interval") protected double samplingParameterInterval; @XmlElement(name = "sampling_parameter_unit", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String samplingParameterUnit; @XmlElement(name = "first_sampling_parameter_value") protected double firstSamplingParameterValue; @XmlElement(name = "last_sampling_parameter_value") protected double lastSamplingParameterValue; @XmlElement(name = "sampling_parameter_scale", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String samplingParameterScale; @XmlElement(name = "sampling_parameter_base") protected Double samplingParameterBase; @XmlElement(name = "sampling_parameters") @XmlSchemaType(name = "unsignedLong") protected BigInteger samplingParameters; /** * Gets the value of the samplingParameterName property. * * @return * possible object is * {@link String } * */ public String getSamplingParameterName() { return samplingParameterName; } /** * Sets the value of the samplingParameterName property. * * @param value * allowed object is * {@link String } * */ public void setSamplingParameterName(String value) { this.samplingParameterName = value; } /** * Gets the value of the samplingParameterInterval property. * */ public double getSamplingParameterInterval() { return samplingParameterInterval; } /** * Sets the value of the samplingParameterInterval property. * */ public void setSamplingParameterInterval(double value) { this.samplingParameterInterval = value; } /** * Gets the value of the samplingParameterUnit property. * * @return * possible object is * {@link String } * */ public String getSamplingParameterUnit() { return samplingParameterUnit; } /** * Sets the value of the samplingParameterUnit property. * * @param value * allowed object is * {@link String } * */ public void setSamplingParameterUnit(String value) { this.samplingParameterUnit = value; } /** * Gets the value of the firstSamplingParameterValue property. * */ public double getFirstSamplingParameterValue() { return firstSamplingParameterValue; } /** * Sets the value of the firstSamplingParameterValue property. * */ public void setFirstSamplingParameterValue(double value) { this.firstSamplingParameterValue = value; } /** * Gets the value of the lastSamplingParameterValue property. * */ public double getLastSamplingParameterValue() { return lastSamplingParameterValue; } /** * Sets the value of the lastSamplingParameterValue property. * */ public void setLastSamplingParameterValue(double value) { this.lastSamplingParameterValue = value; } /** * Gets the value of the samplingParameterScale property. * * @return * possible object is * {@link String } * */ public String getSamplingParameterScale() { return samplingParameterScale; } /** * Sets the value of the samplingParameterScale property. * * @param value * allowed object is * {@link String } * */ public void setSamplingParameterScale(String value) { this.samplingParameterScale = value; } /** * Gets the value of the samplingParameterBase property. * * @return * possible object is * {@link Double } * */ public Double getSamplingParameterBase() { return samplingParameterBase; } /** * Sets the value of the samplingParameterBase property. * * @param value * allowed object is * {@link Double } * */ public void setSamplingParameterBase(Double value) { this.samplingParameterBase = value; } /** * Gets the value of the samplingParameters property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSamplingParameters() { return samplingParameters; } /** * Sets the value of the samplingParameters property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSamplingParameters(BigInteger value) { this.samplingParameters = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy