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

org.openapplications.oagis_segments.TIME Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package org.openapplications.oagis_segments;

import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.TIME_Type;


/**
 * 

Java class for TIME complex type. * *

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

 * <complexType name="TIME">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.openapplications.org/oagis_fields}HOUR"/>
 *         <element ref="{http://www.openapplications.org/oagis_fields}MINUTE"/>
 *         <element ref="{http://www.openapplications.org/oagis_fields}SECOND"/>
 *         <element ref="{http://www.openapplications.org/oagis_fields}SUBSECOND"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TIME", propOrder = { "hour", "minute", "second", "subsecond" }) @XmlSeeAlso({ TIME_Type.class }) public class TIME { @XmlElement(name = "HOUR", namespace = "http://www.openapplications.org/oagis_fields", required = true) protected BigInteger hour; @XmlElement(name = "MINUTE", namespace = "http://www.openapplications.org/oagis_fields", required = true) protected BigInteger minute; @XmlElement(name = "SECOND", namespace = "http://www.openapplications.org/oagis_fields", required = true) protected BigInteger second; @XmlElement(name = "SUBSECOND", namespace = "http://www.openapplications.org/oagis_fields", required = true) protected BigInteger subsecond; /** * Gets the value of the hour property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getHOUR() { return hour; } /** * Sets the value of the hour property. * * @param value * allowed object is * {@link BigInteger } * */ public void setHOUR(BigInteger value) { this.hour = value; } /** * Gets the value of the minute property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMINUTE() { return minute; } /** * Sets the value of the minute property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMINUTE(BigInteger value) { this.minute = value; } /** * Gets the value of the second property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSECOND() { return second; } /** * Sets the value of the second property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSECOND(BigInteger value) { this.second = value; } /** * Gets the value of the subsecond property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSUBSECOND() { return subsecond; } /** * Sets the value of the subsecond property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSUBSECOND(BigInteger value) { this.subsecond = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy