org.fpml.fpml_5.confirmation.FxTargetRegionLowerBound 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.04.04 at 04:56:21 PM UTC
//
package org.fpml.fpml_5.confirmation;
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;
/**
* Java class for FxTargetRegionLowerBound complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FxTargetRegionLowerBound">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="condition" type="{http://www.fpml.org/FpML-5/confirmation}FxRegionLowerBoundDirectionEnum"/>
* <group ref="{http://www.fpml.org/FpML-5/confirmation}FxTargetConditionLevel.model"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FxTargetRegionLowerBound", propOrder = {
"condition",
"level",
"strikeReference",
"pivotReference",
"barrierReference",
"levelReference"
})
public class FxTargetRegionLowerBound {
@XmlElement(required = true)
@XmlSchemaType(name = "token")
protected FxRegionLowerBoundDirectionEnum condition;
protected FxLevel level;
protected FxStrikeReference strikeReference;
protected FxPivotReference pivotReference;
protected FxComplexBarrierBaseReference barrierReference;
protected FxLevelReference levelReference;
/**
* Gets the value of the condition property.
*
* @return
* possible object is
* {@link FxRegionLowerBoundDirectionEnum }
*
*/
public FxRegionLowerBoundDirectionEnum getCondition() {
return condition;
}
/**
* Sets the value of the condition property.
*
* @param value
* allowed object is
* {@link FxRegionLowerBoundDirectionEnum }
*
*/
public void setCondition(FxRegionLowerBoundDirectionEnum value) {
this.condition = value;
}
/**
* Gets the value of the level property.
*
* @return
* possible object is
* {@link FxLevel }
*
*/
public FxLevel getLevel() {
return level;
}
/**
* Sets the value of the level property.
*
* @param value
* allowed object is
* {@link FxLevel }
*
*/
public void setLevel(FxLevel value) {
this.level = value;
}
/**
* Gets the value of the strikeReference property.
*
* @return
* possible object is
* {@link FxStrikeReference }
*
*/
public FxStrikeReference getStrikeReference() {
return strikeReference;
}
/**
* Sets the value of the strikeReference property.
*
* @param value
* allowed object is
* {@link FxStrikeReference }
*
*/
public void setStrikeReference(FxStrikeReference value) {
this.strikeReference = value;
}
/**
* Gets the value of the pivotReference property.
*
* @return
* possible object is
* {@link FxPivotReference }
*
*/
public FxPivotReference getPivotReference() {
return pivotReference;
}
/**
* Sets the value of the pivotReference property.
*
* @param value
* allowed object is
* {@link FxPivotReference }
*
*/
public void setPivotReference(FxPivotReference value) {
this.pivotReference = value;
}
/**
* Gets the value of the barrierReference property.
*
* @return
* possible object is
* {@link FxComplexBarrierBaseReference }
*
*/
public FxComplexBarrierBaseReference getBarrierReference() {
return barrierReference;
}
/**
* Sets the value of the barrierReference property.
*
* @param value
* allowed object is
* {@link FxComplexBarrierBaseReference }
*
*/
public void setBarrierReference(FxComplexBarrierBaseReference value) {
this.barrierReference = value;
}
/**
* Gets the value of the levelReference property.
*
* @return
* possible object is
* {@link FxLevelReference }
*
*/
public FxLevelReference getLevelReference() {
return levelReference;
}
/**
* Sets the value of the levelReference property.
*
* @param value
* allowed object is
* {@link FxLevelReference }
*
*/
public void setLevelReference(FxLevelReference value) {
this.levelReference = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy