Class ResolvedFixedCouponBondTrade
- java.lang.Object
-
- com.opengamma.strata.product.bond.ResolvedFixedCouponBondTrade
-
- All Implemented Interfaces:
ResolvedTrade
,Serializable
,org.joda.beans.Bean
,org.joda.beans.ImmutableBean
public final class ResolvedFixedCouponBondTrade extends Object implements ResolvedTrade, org.joda.beans.ImmutableBean, Serializable
A trade in a fixed coupon bond, resolved for pricing.This is the resolved form of
FixedCouponBondTrade
and is the primary input to the pricers. Applications will typically create aResolvedFixedCouponBondTrade
from aFixedCouponBondTrade
usingFixedCouponBondTrade.resolve(ReferenceData)
.It is also the resolved form of
FixedCouponBondPosition
for those cases where a position is held. The position is priced as though the trade is fully settled.A
ResolvedFixedCouponBondTrade
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.Price
Strata uses decimal prices for bonds in the trade model, pricers and market data. For example, a price of 99.32% is represented in Strata by 0.9932.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ResolvedFixedCouponBondTrade.Builder
The bean-builder forResolvedFixedCouponBondTrade
.static class
ResolvedFixedCouponBondTrade.Meta
The meta-bean forResolvedFixedCouponBondTrade
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResolvedFixedCouponBondTrade.Builder
builder()
Returns a builder used to create an instance of the bean.boolean
equals(Object obj)
PortfolioItemInfo
getInfo()
Gets the additional information, defaulted to an empty instance.ResolvedFixedCouponBond
getProduct()
Gets the resolved fixed coupon bond product.double
getQuantity()
Gets the quantity, indicating the number of bond contracts in the trade.Optional<ResolvedFixedCouponBondSettlement>
getSettlement()
Gets the settlement details of the bond trade.int
hashCode()
static ResolvedFixedCouponBondTrade.Meta
meta()
The meta-bean forResolvedFixedCouponBondTrade
.ResolvedFixedCouponBondTrade.Meta
metaBean()
ResolvedFixedCouponBondTrade.Builder
toBuilder()
Returns a builder that allows this bean to be mutated.String
toString()
-
-
-
Method Detail
-
meta
public static ResolvedFixedCouponBondTrade.Meta meta()
The meta-bean forResolvedFixedCouponBondTrade
.- Returns:
- the meta-bean, not null
-
builder
public static ResolvedFixedCouponBondTrade.Builder builder()
Returns a builder used to create an instance of the bean.- Returns:
- the builder, not null
-
metaBean
public ResolvedFixedCouponBondTrade.Meta metaBean()
- Specified by:
metaBean
in interfaceorg.joda.beans.Bean
-
getInfo
public PortfolioItemInfo getInfo()
Gets the additional information, defaulted to an empty instance.This allows additional information to be attached.
- Specified by:
getInfo
in interfaceResolvedTrade
- Returns:
- the value of the property, not null
-
getProduct
public ResolvedFixedCouponBond getProduct()
Gets the resolved fixed coupon bond product.The product captures the contracted financial details of the trade.
- Specified by:
getProduct
in interfaceResolvedTrade
- Returns:
- the value of the property, not null
-
getQuantity
public double getQuantity()
Gets the quantity, indicating the number of bond contracts in the trade.This will be positive if buying and negative if selling.
- Returns:
- the value of the property
-
getSettlement
public Optional<ResolvedFixedCouponBondSettlement> getSettlement()
Gets the settlement details of the bond trade.When this class is used to represent a position, this property will be empty.
- Returns:
- the optional value of the property, not null
-
toBuilder
public ResolvedFixedCouponBondTrade.Builder toBuilder()
Returns a builder that allows this bean to be mutated.- Returns:
- the mutable builder, not null
-
-