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

net.finmath.smartcontract.product.xml.EquityAmericanExercise 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * A type for defining exercise procedures associated with an American style
 *                 exercise of an equity option. This entity inherits from the type SharedAmericanExercise.
 *             
 * 
 * 

Java class for EquityAmericanExercise complex type. * *

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

 * <complexType name="EquityAmericanExercise">
 *   <complexContent>
 *     <extension base="{http://www.fpml.org/FpML-5/confirmation}SharedAmericanExercise">
 *       <sequence>
 *         <element name="latestExerciseTimeType" type="{http://www.fpml.org/FpML-5/confirmation}TimeTypeEnum" minOccurs="0"/>
 *         <group ref="{http://www.fpml.org/FpML-5/confirmation}EquityExpiration.model"/>
 *         <element name="equityMultipleExercise" type="{http://www.fpml.org/FpML-5/confirmation}EquityMultipleExercise" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EquityAmericanExercise", propOrder = { "latestExerciseTimeType", "equityExpirationTimeType", "equityExpirationTime", "expirationTimeDetermination", "equityMultipleExercise" }) public class EquityAmericanExercise extends SharedAmericanExercise { @XmlSchemaType(name = "token") protected TimeTypeEnum latestExerciseTimeType; @XmlSchemaType(name = "token") protected TimeTypeEnum equityExpirationTimeType; protected BusinessCenterTime equityExpirationTime; protected DeterminationMethod expirationTimeDetermination; protected EquityMultipleExercise equityMultipleExercise; /** * Gets the value of the latestExerciseTimeType property. * * @return * possible object is * {@link TimeTypeEnum } * */ public TimeTypeEnum getLatestExerciseTimeType() { return latestExerciseTimeType; } /** * Sets the value of the latestExerciseTimeType property. * * @param value * allowed object is * {@link TimeTypeEnum } * */ public void setLatestExerciseTimeType(TimeTypeEnum value) { this.latestExerciseTimeType = 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; } /** * Gets the value of the equityMultipleExercise property. * * @return * possible object is * {@link EquityMultipleExercise } * */ public EquityMultipleExercise getEquityMultipleExercise() { return equityMultipleExercise; } /** * Sets the value of the equityMultipleExercise property. * * @param value * allowed object is * {@link EquityMultipleExercise } * */ public void setEquityMultipleExercise(EquityMultipleExercise value) { this.equityMultipleExercise = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy