Class ResolvedIborCapFloorTrade
- java.lang.Object
-
- com.opengamma.strata.product.capfloor.ResolvedIborCapFloorTrade
-
- All Implemented Interfaces:
ResolvedTrade
,Serializable
,org.joda.beans.Bean
,org.joda.beans.ImmutableBean
public final class ResolvedIborCapFloorTrade extends Object implements ResolvedTrade, org.joda.beans.ImmutableBean, Serializable
A trade in an Ibor cap/floor, resolved for pricing.This is the resolved form of
IborCapFloorTrade
and is the primary input to the pricers. Applications will typically create aResolvedIborCapFloorTrade
from aIborCapFloorTrade
usingIborCapFloorTrade.resolve(ReferenceData)
.A
ResolvedIborCapFloorTrade
is 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 class
ResolvedIborCapFloorTrade.Builder
The bean-builder forResolvedIborCapFloorTrade
.static class
ResolvedIborCapFloorTrade.Meta
The meta-bean forResolvedIborCapFloorTrade
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResolvedIborCapFloorTrade.Builder
builder()
Returns a builder used to create an instance of the bean.boolean
equals(Object obj)
TradeInfo
getInfo()
Gets the additional trade information, defaulted to an empty instance.Optional<Payment>
getPremium()
Gets the optional premium of the product.ResolvedIborCapFloor
getProduct()
Gets the resolved Ibor cap/floor product.int
hashCode()
static ResolvedIborCapFloorTrade.Meta
meta()
The meta-bean forResolvedIborCapFloorTrade
.ResolvedIborCapFloorTrade.Meta
metaBean()
ResolvedIborCapFloorTrade.Builder
toBuilder()
Returns a builder that allows this bean to be mutated.String
toString()
-
-
-
Method Detail
-
meta
public static ResolvedIborCapFloorTrade.Meta meta()
The meta-bean forResolvedIborCapFloorTrade
.- Returns:
- the meta-bean, not null
-
builder
public static ResolvedIborCapFloorTrade.Builder builder()
Returns a builder used to create an instance of the bean.- Returns:
- the builder, not null
-
metaBean
public ResolvedIborCapFloorTrade.Meta metaBean()
- Specified by:
metaBean
in 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:
getInfo
in interfaceResolvedTrade
- Returns:
- the value of the property, not null
-
getProduct
public ResolvedIborCapFloor getProduct()
Gets the resolved Ibor cap/floor product.The product captures the contracted financial details of the trade.
- Specified by:
getProduct
in interfaceResolvedTrade
- Returns:
- the value of the property, not null
-
getPremium
public Optional<Payment> getPremium()
Gets the optional premium of the product.For most Ibor cap/floor products, a premium is paid upfront. This typically occurs instead of periodic payments based on fixed or Ibor rates over the lifetime of the product.
The premium sign must be compatible with the product Pay/Receive flag.
- Returns:
- the optional value of the property, not null
-
toBuilder
public ResolvedIborCapFloorTrade.Builder toBuilder()
Returns a builder that allows this bean to be mutated.- Returns:
- the mutable builder, not null
-
-