Class CapFloor
Java class for CapFloor complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CapFloor"> <complexContent> <extension base="{http://www.fpml.org/FpML-5/confirmation}Product"> <sequence> <element name="capFloorStream" type="{http://www.fpml.org/FpML-5/confirmation}InterestRateStream"/> <element name="premium" type="{http://www.fpml.org/FpML-5/confirmation}Payment" maxOccurs="unbounded" minOccurs="0"/> <element name="additionalPayment" type="{http://www.fpml.org/FpML-5/confirmation}Payment" maxOccurs="unbounded" minOccurs="0"/> <element name="earlyTerminationProvision" type="{http://www.fpml.org/FpML-5/confirmation}EarlyTerminationProvision" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
Field Summary
Modifier and TypeFieldDescriptionprotected InterestRateStream
protected EarlyTerminationProvision
Fields inherited from class net.finmath.smartcontract.product.xml.Product
assetClass, id, primaryAssetClass, productId, productType, secondaryAssetClass
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the additionalPayment property.Gets the value of the capFloorStream property.Gets the value of the earlyTerminationProvision property.Gets the value of the premium property.void
Sets the value of the capFloorStream property.void
Sets the value of the earlyTerminationProvision property.Methods inherited from class net.finmath.smartcontract.product.xml.Product
getAssetClass, getId, getPrimaryAssetClass, getProductId, getProductType, getSecondaryAssetClass, setId, setPrimaryAssetClass
-
Field Details
-
capFloorStream
-
additionalPayment
-
earlyTerminationProvision
-
-
Constructor Details
-
CapFloor
public CapFloor()
-
-
Method Details
-
getCapFloorStream
Gets the value of the capFloorStream property.- Returns:
- possible object is
InterestRateStream
-
setCapFloorStream
Sets the value of the capFloorStream property.- Parameters:
value
- allowed object isInterestRateStream
-
getPremium
Gets the value of the premium property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
set
method for the premium property.For example, to add a new item, do as follows:
getPremium().add(newItem);
Objects of the following type(s) are allowed in the list
Payment
-
getAdditionalPayment
Gets the value of the additionalPayment property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
set
method for the additionalPayment property.For example, to add a new item, do as follows:
getAdditionalPayment().add(newItem);
Objects of the following type(s) are allowed in the list
Payment
-
getEarlyTerminationProvision
Gets the value of the earlyTerminationProvision property.- Returns:
- possible object is
EarlyTerminationProvision
-
setEarlyTerminationProvision
Sets the value of the earlyTerminationProvision property.- Parameters:
value
- allowed object isEarlyTerminationProvision
-