gov.nasa.arc.pds.xml.generated.FieldCharacter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds4-jparser Show documentation
Show all versions of pds4-jparser Show documentation
This is the parser library for the PDS4 planetary data standard.
//
// 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_Character class defines a field of a
* character record or a field of a character
* group.
*
* Java class for Field_Character complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Field_Character">
* <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="validation_format" type="{http://pds.nasa.gov/pds4/pds/v1}validation_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"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Field_Character", propOrder = {
"fieldLocation",
"dataType",
"fieldLength",
"fieldFormat",
"validationFormat",
"unit",
"scalingFactor",
"valueOffset",
"description",
"specialConstants",
"fieldStatistics"
})
public class FieldCharacter
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;
@XmlElement(name = "validation_format")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String validationFormat;
@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;
/**
* 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 validationFormat property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValidationFormat() {
return validationFormat;
}
/**
* Sets the value of the validationFormat property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValidationFormat(String value) {
this.validationFormat = 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;
}
}