org.fpml.fpml_5.confirmation.WeightedAveragingObservation Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import java.math.BigDecimal;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* A single weighted averaging observation.
*
* Java class for WeightedAveragingObservation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WeightedAveragingObservation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element name="dateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="observationNumber" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
* </choice>
* <element name="weight" type="{http://www.fpml.org/FpML-5/confirmation}NonNegativeDecimal"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WeightedAveragingObservation", propOrder = {
"dateTime",
"observationNumber",
"weight"
})
public class WeightedAveragingObservation {
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateTime;
@XmlSchemaType(name = "positiveInteger")
protected BigInteger observationNumber;
@XmlElement(required = true)
protected BigDecimal weight;
/**
* Gets the value of the dateTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDateTime() {
return dateTime;
}
/**
* Sets the value of the dateTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDateTime(XMLGregorianCalendar value) {
this.dateTime = value;
}
/**
* Gets the value of the observationNumber property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getObservationNumber() {
return observationNumber;
}
/**
* Sets the value of the observationNumber property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setObservationNumber(BigInteger value) {
this.observationNumber = value;
}
/**
* Gets the value of the weight property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getWeight() {
return weight;
}
/**
* Sets the value of the weight property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setWeight(BigDecimal value) {
this.weight = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy