Class ResolvedIborFixingDepositTrade
- java.lang.Object
-
- com.opengamma.strata.product.deposit.ResolvedIborFixingDepositTrade
-
- All Implemented Interfaces:
ResolvedTrade
,Serializable
,org.joda.beans.Bean
,org.joda.beans.ImmutableBean
public final class ResolvedIborFixingDepositTrade extends Object implements ResolvedTrade, org.joda.beans.ImmutableBean, Serializable
A trade in an Ibor fixing deposit, resolved for pricing.This is the resolved form of
IborFixingDepositTrade
and is the primary input to the pricers. Applications will typically create aResolvedIborFixingDepositTrade
from aIborFixingDepositTrade
usingIborFixingDepositTrade.resolve(ReferenceData)
.A
ResolvedIborFixingDepositTrade
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
ResolvedIborFixingDepositTrade.Builder
The bean-builder forResolvedIborFixingDepositTrade
.static class
ResolvedIborFixingDepositTrade.Meta
The meta-bean forResolvedIborFixingDepositTrade
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResolvedIborFixingDepositTrade.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.ResolvedIborFixingDeposit
getProduct()
Gets the resolved Ibor Fixing Deposit product.int
hashCode()
static ResolvedIborFixingDepositTrade.Meta
meta()
The meta-bean forResolvedIborFixingDepositTrade
.ResolvedIborFixingDepositTrade.Meta
metaBean()
static ResolvedIborFixingDepositTrade
of(TradeInfo info, ResolvedIborFixingDeposit product)
Obtains an instance of a resolved Ibor Fixing Deposit trade.ResolvedIborFixingDepositTrade.Builder
toBuilder()
Returns a builder that allows this bean to be mutated.String
toString()
-
-
-
Method Detail
-
of
public static ResolvedIborFixingDepositTrade of(TradeInfo info, ResolvedIborFixingDeposit product)
Obtains an instance of a resolved Ibor Fixing Deposit trade.- Parameters:
info
- the trade infoproduct
- the product- Returns:
- the resolved trade
-
meta
public static ResolvedIborFixingDepositTrade.Meta meta()
The meta-bean forResolvedIborFixingDepositTrade
.- Returns:
- the meta-bean, not null
-
builder
public static ResolvedIborFixingDepositTrade.Builder builder()
Returns a builder used to create an instance of the bean.- Returns:
- the builder, not null
-
metaBean
public ResolvedIborFixingDepositTrade.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 ResolvedIborFixingDeposit getProduct()
Gets the resolved Ibor Fixing Deposit product.The product captures the contracted financial details of the trade.
- Specified by:
getProduct
in interfaceResolvedTrade
- Returns:
- the value of the property, not null
-
toBuilder
public ResolvedIborFixingDepositTrade.Builder toBuilder()
Returns a builder that allows this bean to be mutated.- Returns:
- the mutable builder, not null
-
-