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

gov.nasa.arc.pds.xml.generated.FieldStatistics 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.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 Field Statistics class provides a set of
 *         metrics for a column formed by a field in a repeating
 *         record.
 * 
 * 

Java class for Field_Statistics complex type. * *

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

 * <complexType name="Field_Statistics">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier" minOccurs="0"/>
 *         <element name="maximum" type="{http://pds.nasa.gov/pds4/pds/v1}maximum" minOccurs="0"/>
 *         <element name="minimum" type="{http://pds.nasa.gov/pds4/pds/v1}minimum" minOccurs="0"/>
 *         <element name="mean" type="{http://pds.nasa.gov/pds4/pds/v1}mean" minOccurs="0"/>
 *         <element name="standard_deviation" type="{http://pds.nasa.gov/pds4/pds/v1}standard_deviation" minOccurs="0"/>
 *         <element name="median" type="{http://pds.nasa.gov/pds4/pds/v1}median" minOccurs="0"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Field_Statistics", propOrder = { "localIdentifier", "maximum", "minimum", "mean", "standardDeviation", "median", "description" }) public class FieldStatistics { @XmlElement(name = "local_identifier") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String localIdentifier; protected Double maximum; protected Double minimum; protected Double mean; @XmlElement(name = "standard_deviation") protected Double standardDeviation; protected Double median; protected String description; /** * 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 maximum property. * * @return * possible object is * {@link Double } * */ public Double getMaximum() { return maximum; } /** * Sets the value of the maximum property. * * @param value * allowed object is * {@link Double } * */ public void setMaximum(Double value) { this.maximum = value; } /** * Gets the value of the minimum property. * * @return * possible object is * {@link Double } * */ public Double getMinimum() { return minimum; } /** * Sets the value of the minimum property. * * @param value * allowed object is * {@link Double } * */ public void setMinimum(Double value) { this.minimum = value; } /** * Gets the value of the mean property. * * @return * possible object is * {@link Double } * */ public Double getMean() { return mean; } /** * Sets the value of the mean property. * * @param value * allowed object is * {@link Double } * */ public void setMean(Double value) { this.mean = value; } /** * Gets the value of the standardDeviation property. * * @return * possible object is * {@link Double } * */ public Double getStandardDeviation() { return standardDeviation; } /** * Sets the value of the standardDeviation property. * * @param value * allowed object is * {@link Double } * */ public void setStandardDeviation(Double value) { this.standardDeviation = value; } /** * Gets the value of the median property. * * @return * possible object is * {@link Double } * */ public Double getMedian() { return median; } /** * Sets the value of the median property. * * @param value * allowed object is * {@link Double } * */ public void setMedian(Double value) { this.median = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy