gov.nasa.arc.pds.xml.generated.TimeCoordinates 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.9
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.27 at 05:20:24 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 Time_Coordinates class provides a list of
* time coordinates.
*
* Java class for Time_Coordinates complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Time_Coordinates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="start_date_time" type="{http://pds.nasa.gov/pds4/pds/v1}start_date_time"/>
* <element name="stop_date_time" type="{http://pds.nasa.gov/pds4/pds/v1}stop_date_time"/>
* <element name="local_mean_solar_time" type="{http://pds.nasa.gov/pds4/pds/v1}local_mean_solar_time" minOccurs="0"/>
* <element name="local_true_solar_time" type="{http://pds.nasa.gov/pds4/pds/v1}local_true_solar_time" minOccurs="0"/>
* <element name="solar_longitude" type="{http://pds.nasa.gov/pds4/pds/v1}solar_longitude" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Time_Coordinates", propOrder = {
"startDateTime",
"stopDateTime",
"localMeanSolarTime",
"localTrueSolarTime",
"solarLongitude"
})
public class TimeCoordinates {
@XmlElement(name = "start_date_time", required = true, nillable = true)
protected StartDateTime startDateTime;
@XmlElement(name = "stop_date_time", required = true, nillable = true)
protected StopDateTime stopDateTime;
@XmlElement(name = "local_mean_solar_time")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String localMeanSolarTime;
@XmlElement(name = "local_true_solar_time")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String localTrueSolarTime;
@XmlElement(name = "solar_longitude")
protected SolarLongitude solarLongitude;
/**
* Gets the value of the startDateTime property.
*
* @return
* possible object is
* {@link StartDateTime }
*
*/
public StartDateTime getStartDateTime() {
return startDateTime;
}
/**
* Sets the value of the startDateTime property.
*
* @param value
* allowed object is
* {@link StartDateTime }
*
*/
public void setStartDateTime(StartDateTime value) {
this.startDateTime = value;
}
/**
* Gets the value of the stopDateTime property.
*
* @return
* possible object is
* {@link StopDateTime }
*
*/
public StopDateTime getStopDateTime() {
return stopDateTime;
}
/**
* Sets the value of the stopDateTime property.
*
* @param value
* allowed object is
* {@link StopDateTime }
*
*/
public void setStopDateTime(StopDateTime value) {
this.stopDateTime = value;
}
/**
* Gets the value of the localMeanSolarTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalMeanSolarTime() {
return localMeanSolarTime;
}
/**
* Sets the value of the localMeanSolarTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalMeanSolarTime(String value) {
this.localMeanSolarTime = value;
}
/**
* Gets the value of the localTrueSolarTime property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalTrueSolarTime() {
return localTrueSolarTime;
}
/**
* Sets the value of the localTrueSolarTime property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalTrueSolarTime(String value) {
this.localTrueSolarTime = value;
}
/**
* Gets the value of the solarLongitude property.
*
* @return
* possible object is
* {@link SolarLongitude }
*
*/
public SolarLongitude getSolarLongitude() {
return solarLongitude;
}
/**
* Sets the value of the solarLongitude property.
*
* @param value
* allowed object is
* {@link SolarLongitude }
*
*/
public void setSolarLongitude(SolarLongitude value) {
this.solarLongitude = value;
}
}