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

gov.nasa.arc.pds.xml.generated.FieldBinary Maven / Gradle / Ivy

//
// 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 Field_Binary class defines a field of a
 *         binary record or a field of a binary group.
 * 
 * 

Java class for Field_Binary complex type. * *

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

 * <complexType name="Field_Binary">
 *   <complexContent>
 *     <extension base="{http://pds.nasa.gov/pds4/pds/v1}Field">
 *       <sequence>
 *         <element name="field_location" type="{http://pds.nasa.gov/pds4/pds/v1}field_location"/>
 *         <element name="data_type" type="{http://pds.nasa.gov/pds4/pds/v1}data_type"/>
 *         <element name="field_length" type="{http://pds.nasa.gov/pds4/pds/v1}field_length"/>
 *         <element name="field_format" type="{http://pds.nasa.gov/pds4/pds/v1}field_format" minOccurs="0"/>
 *         <element name="unit" type="{http://pds.nasa.gov/pds4/pds/v1}unit" minOccurs="0"/>
 *         <element name="scaling_factor" type="{http://pds.nasa.gov/pds4/pds/v1}scaling_factor" minOccurs="0"/>
 *         <element name="value_offset" type="{http://pds.nasa.gov/pds4/pds/v1}value_offset" minOccurs="0"/>
 *         <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
 *         <element name="Special_Constants" type="{http://pds.nasa.gov/pds4/pds/v1}Special_Constants" minOccurs="0"/>
 *         <element name="Field_Statistics" type="{http://pds.nasa.gov/pds4/pds/v1}Field_Statistics" minOccurs="0"/>
 *         <element name="Packed_Data_Fields" type="{http://pds.nasa.gov/pds4/pds/v1}Packed_Data_Fields" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Field_Binary", propOrder = { "fieldLocation", "dataType", "fieldLength", "fieldFormat", "unit", "scalingFactor", "valueOffset", "description", "specialConstants", "fieldStatistics", "packedDataFields" }) public class FieldBinary extends Field { @XmlElement(name = "field_location", required = true) protected FieldLocation fieldLocation; @XmlElement(name = "data_type", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String dataType; @XmlElement(name = "field_length", required = true) protected FieldLength fieldLength; @XmlElement(name = "field_format") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String fieldFormat; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String unit; @XmlElement(name = "scaling_factor") protected Double scalingFactor; @XmlElement(name = "value_offset") protected Double valueOffset; protected String description; @XmlElement(name = "Special_Constants") protected SpecialConstants specialConstants; @XmlElement(name = "Field_Statistics") protected FieldStatistics fieldStatistics; @XmlElement(name = "Packed_Data_Fields") protected PackedDataFields packedDataFields; /** * Gets the value of the fieldLocation property. * * @return * possible object is * {@link FieldLocation } * */ public FieldLocation getFieldLocation() { return fieldLocation; } /** * Sets the value of the fieldLocation property. * * @param value * allowed object is * {@link FieldLocation } * */ public void setFieldLocation(FieldLocation value) { this.fieldLocation = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link String } * */ public String getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link String } * */ public void setDataType(String value) { this.dataType = value; } /** * Gets the value of the fieldLength property. * * @return * possible object is * {@link FieldLength } * */ public FieldLength getFieldLength() { return fieldLength; } /** * Sets the value of the fieldLength property. * * @param value * allowed object is * {@link FieldLength } * */ public void setFieldLength(FieldLength value) { this.fieldLength = value; } /** * Gets the value of the fieldFormat property. * * @return * possible object is * {@link String } * */ public String getFieldFormat() { return fieldFormat; } /** * Sets the value of the fieldFormat property. * * @param value * allowed object is * {@link String } * */ public void setFieldFormat(String value) { this.fieldFormat = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link String } * */ public String getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link String } * */ public void setUnit(String value) { this.unit = value; } /** * Gets the value of the scalingFactor property. * * @return * possible object is * {@link Double } * */ public Double getScalingFactor() { return scalingFactor; } /** * Sets the value of the scalingFactor property. * * @param value * allowed object is * {@link Double } * */ public void setScalingFactor(Double value) { this.scalingFactor = value; } /** * Gets the value of the valueOffset property. * * @return * possible object is * {@link Double } * */ public Double getValueOffset() { return valueOffset; } /** * Sets the value of the valueOffset property. * * @param value * allowed object is * {@link Double } * */ public void setValueOffset(Double value) { this.valueOffset = 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 specialConstants property. * * @return * possible object is * {@link SpecialConstants } * */ public SpecialConstants getSpecialConstants() { return specialConstants; } /** * Sets the value of the specialConstants property. * * @param value * allowed object is * {@link SpecialConstants } * */ public void setSpecialConstants(SpecialConstants value) { this.specialConstants = value; } /** * Gets the value of the fieldStatistics property. * * @return * possible object is * {@link FieldStatistics } * */ public FieldStatistics getFieldStatistics() { return fieldStatistics; } /** * Sets the value of the fieldStatistics property. * * @param value * allowed object is * {@link FieldStatistics } * */ public void setFieldStatistics(FieldStatistics value) { this.fieldStatistics = value; } /** * Gets the value of the packedDataFields property. * * @return * possible object is * {@link PackedDataFields } * */ public PackedDataFields getPackedDataFields() { return packedDataFields; } /** * Sets the value of the packedDataFields property. * * @param value * allowed object is * {@link PackedDataFields } * */ public void setPackedDataFields(PackedDataFields value) { this.packedDataFields = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy