org.fpml.fpml_5.confirmation.ParametricAdjustmentPoint 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* A value of the adjustment point, consisting of the x value and the corresponding y value.
*
* Java class for ParametricAdjustmentPoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ParametricAdjustmentPoint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="parameterValue" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* <element name="adjustmentValue" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ParametricAdjustmentPoint", propOrder = {
"parameterValue",
"adjustmentValue"
})
public class ParametricAdjustmentPoint {
@XmlElement(required = true)
protected BigDecimal parameterValue;
@XmlElement(required = true)
protected BigDecimal adjustmentValue;
/**
* Gets the value of the parameterValue property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getParameterValue() {
return parameterValue;
}
/**
* Sets the value of the parameterValue property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setParameterValue(BigDecimal value) {
this.parameterValue = value;
}
/**
* Gets the value of the adjustmentValue property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAdjustmentValue() {
return adjustmentValue;
}
/**
* Sets the value of the adjustmentValue property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setAdjustmentValue(BigDecimal value) {
this.adjustmentValue = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy