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

net.finmath.smartcontract.product.xml.EquityEuropeanExercise Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.12.05 at 10:53:57 AM CET 
//


package net.finmath.smartcontract.product.xml;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type for defining exercise procedures associated with a European style
 *                 exercise of an equity option.
 *             
 * 
 * 

Java class for EquityEuropeanExercise complex type. * *

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

 * <complexType name="EquityEuropeanExercise">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}Exercise">
 *       <sequence>
 *         <element name="expirationDate" type="{http://www.fpml.org/FpML-5/confirmation}AdjustableOrRelativeDate"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}EquityExpiration.model"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EquityEuropeanExercise", propOrder = { "expirationDate", "equityExpirationTimeType", "equityExpirationTime", "expirationTimeDetermination" }) public class EquityEuropeanExercise extends Exercise { @XmlElement(required = true) protected AdjustableOrRelativeDate expirationDate; @XmlSchemaType(name = "token") protected TimeTypeEnum equityExpirationTimeType; protected BusinessCenterTime equityExpirationTime; protected DeterminationMethod expirationTimeDetermination; /** * Gets the value of the expirationDate property. * * @return * possible object is * {@link AdjustableOrRelativeDate } * */ public AdjustableOrRelativeDate getExpirationDate() { return expirationDate; } /** * Sets the value of the expirationDate property. * * @param value * allowed object is * {@link AdjustableOrRelativeDate } * */ public void setExpirationDate(AdjustableOrRelativeDate value) { this.expirationDate = value; } /** * Gets the value of the equityExpirationTimeType property. * * @return * possible object is * {@link TimeTypeEnum } * */ public TimeTypeEnum getEquityExpirationTimeType() { return equityExpirationTimeType; } /** * Sets the value of the equityExpirationTimeType property. * * @param value * allowed object is * {@link TimeTypeEnum } * */ public void setEquityExpirationTimeType(TimeTypeEnum value) { this.equityExpirationTimeType = value; } /** * Gets the value of the equityExpirationTime property. * * @return * possible object is * {@link BusinessCenterTime } * */ public BusinessCenterTime getEquityExpirationTime() { return equityExpirationTime; } /** * Sets the value of the equityExpirationTime property. * * @param value * allowed object is * {@link BusinessCenterTime } * */ public void setEquityExpirationTime(BusinessCenterTime value) { this.equityExpirationTime = value; } /** * Gets the value of the expirationTimeDetermination property. * * @return * possible object is * {@link DeterminationMethod } * */ public DeterminationMethod getExpirationTimeDetermination() { return expirationTimeDetermination; } /** * Sets the value of the expirationTimeDetermination property. * * @param value * allowed object is * {@link DeterminationMethod } * */ public void setExpirationTimeDetermination(DeterminationMethod value) { this.expirationTimeDetermination = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy