Class ResolvedSwaptionTrade
- java.lang.Object
-
- com.opengamma.strata.product.swaption.ResolvedSwaptionTrade
-
- All Implemented Interfaces:
ResolvedTrade,Serializable,org.joda.beans.Bean,org.joda.beans.ImmutableBean
public final class ResolvedSwaptionTrade extends Object implements ResolvedTrade, org.joda.beans.ImmutableBean, Serializable
A trade in a swaption, resolved for pricing.This is the resolved form of
SwaptionTradeand is the primary input to the pricers. Applications will typically create aResolvedSwaptionTradefrom aSwaptionTradeusingSwaptionTrade.resolve(ReferenceData).A
ResolvedSwaptionTradeis bound to data that changes over time, such as holiday calendars. If the data changes, such as the addition of a new holiday, the resolved form will not be updated. Care must be taken when placing the resolved form in a cache or persistence layer.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResolvedSwaptionTrade.BuilderThe bean-builder forResolvedSwaptionTrade.static classResolvedSwaptionTrade.MetaThe meta-bean forResolvedSwaptionTrade.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResolvedSwaptionTrade.Builderbuilder()Returns a builder used to create an instance of the bean.booleanequals(Object obj)TradeInfogetInfo()Gets the additional trade information, defaulted to an empty instance.PaymentgetPremium()Gets the premium of the swaption.ResolvedSwaptiongetProduct()Gets the resolved Swaption product.inthashCode()static ResolvedSwaptionTrade.Metameta()The meta-bean forResolvedSwaptionTrade.ResolvedSwaptionTrade.MetametaBean()static ResolvedSwaptionTradeof(TradeInfo info, ResolvedSwaption product, Payment premium)Obtains an instance of a resolved Swaption trade.ResolvedSwaptionTrade.BuildertoBuilder()Returns a builder that allows this bean to be mutated.StringtoString()
-
-
-
Method Detail
-
of
public static ResolvedSwaptionTrade of(TradeInfo info, ResolvedSwaption product, Payment premium)
Obtains an instance of a resolved Swaption trade.- Parameters:
info- the trade infoproduct- the productpremium- the premium- Returns:
- the resolved trade
-
meta
public static ResolvedSwaptionTrade.Meta meta()
The meta-bean forResolvedSwaptionTrade.- Returns:
- the meta-bean, not null
-
builder
public static ResolvedSwaptionTrade.Builder builder()
Returns a builder used to create an instance of the bean.- Returns:
- the builder, not null
-
metaBean
public ResolvedSwaptionTrade.Meta metaBean()
- Specified by:
metaBeanin interfaceorg.joda.beans.Bean
-
getInfo
public TradeInfo getInfo()
Gets the additional trade information, defaulted to an empty instance.This allows additional information to be attached to the trade.
- Specified by:
getInfoin interfaceResolvedTrade- Returns:
- the value of the property, not null
-
getProduct
public ResolvedSwaption getProduct()
Gets the resolved Swaption product.The product captures the contracted financial details of the trade.
- Specified by:
getProductin interfaceResolvedTrade- Returns:
- the value of the property, not null
-
getPremium
public Payment getPremium()
Gets the premium of the swaption.The premium sign should be compatible with the product Long/Short flag. This means that the premium is negative for long and positive for short.
- Returns:
- the value of the property, not null
-
toBuilder
public ResolvedSwaptionTrade.Builder toBuilder()
Returns a builder that allows this bean to be mutated.- Returns:
- the mutable builder, not null
-
-