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

org.omg.space.xtce.AbsoluteTimeDataType Maven / Gradle / Ivy

Go to download

This project contains software to support the Object Management Group (OMG) Space Domain Task Force (SDTF) maintained XML Telemetry and Command Exchange (XTCE) specification.

There is a newer version: 1.1.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.03.16 at 05:52:46 PM MST 
//


package org.omg.space.xtce;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * Used to contain an absolute time. Contains an absolute (to a known epoch) time.  Use the [ISO 8601] extended format CCYY-MM-DDThh:mm:ss where "CC" represents the century, "YY" the year, "MM" the month and "DD" the day, preceded by an optional leading "-" sign to indicate a negative number. If the sign is omitted, "+" is assumed. The letter "T" is the date/time separator and "hh", "mm", "ss" represent hour, minute and second respectively. Additional digits can be used to increase the precision of fractional seconds if desired i.e. the format ss.ss... with any number of digits after the decimal point is supported. 
 * 
 * 
 * 

Java class for AbsoluteTimeDataType complex type. * *

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

 * <complexType name="AbsoluteTimeDataType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}BaseTimeDataType">
 *       <attribute name="initialValue" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbsoluteTimeDataType") public class AbsoluteTimeDataType extends BaseTimeDataType { @XmlAttribute(name = "initialValue") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar initialValue; /** * Gets the value of the initialValue property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getInitialValue() { return initialValue; } /** * Sets the value of the initialValue property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setInitialValue(XMLGregorianCalendar value) { this.initialValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy