Class TradeDetailsPartsDef.TradeDetailsFields
- java.lang.Object
-
- com.caplin.generated.motif.mm.tradedetails.TradeDetailsPartsDef.TradeDetailsFields
-
- All Implemented Interfaces:
BuilderMessage
,Message
- Enclosing class:
- TradeDetailsPartsDef
public static final class TradeDetailsPartsDef.TradeDetailsFields extends java.lang.Object implements BuilderMessage
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TradeDetailsPartsDef.TradeDetailsFields.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @NotNull TradeDetailsPartsDef.TradeDetailsFields
from(@NotNull java.util.Map<java.lang.String,java.lang.String> fields)
static @NotNull TradeDetailsPartsDef.TradeDetailsFields
from(@NotNull java.util.Map<java.lang.String,java.lang.String> fields, @NotNull java.lang.String fieldPrefix)
@Nullable java.lang.String
getCurrency()
@NotNull java.util.Map<java.lang.String,java.util.Collection<java.lang.String>>
getFieldFlags()
@NotNull java.util.Map<java.lang.String,java.lang.String>
getFields()
@NotNull java.util.Map<java.lang.String,java.util.Collection<java.lang.String>>
getFlagFields()
@Nullable java.math.BigDecimal
getInterestAmount()
@Nullable java.math.BigDecimal
getInterestRate()
@Nullable java.time.LocalDate
getMaturityDate()
@Nullable java.math.BigDecimal
getPrincipalAmount()
@Nullable java.time.LocalDate
getStartDate()
static @NotNull TradeDetailsPartsDef.TradeDetailsFields.Builder
newBuilder()
@NotNull java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.caplin.motif.datasource.BuilderMessage
getFieldFlags, getFlagFields
-
-
-
-
Method Detail
-
getCurrency
@Nullable public @Nullable java.lang.String getCurrency()
- Returns:
- The currency in which the trade is made.
-
getPrincipalAmount
@Nullable public @Nullable java.math.BigDecimal getPrincipalAmount()
- Returns:
- Principal amount for the trade specified in the provided Currency.
-
getStartDate
@Nullable public @Nullable java.time.LocalDate getStartDate()
- Returns:
- The start date of the trade.
-
getMaturityDate
@Nullable public @Nullable java.time.LocalDate getMaturityDate()
- Returns:
- The maturity date of the trade.
-
getInterestRate
@Nullable public @Nullable java.math.BigDecimal getInterestRate()
- Returns:
- Interest rate on the given PrincipalAmount.
-
getInterestAmount
@Nullable public @Nullable java.math.BigDecimal getInterestAmount()
- Returns:
- Interest amount (specified in the provided Currency) calculated from the interest rate and principal amount.
-
getFields
@NotNull public @NotNull java.util.Map<java.lang.String,java.lang.String> getFields()
-
getFieldFlags
@NotNull public @NotNull java.util.Map<java.lang.String,java.util.Collection<java.lang.String>> getFieldFlags()
- Specified by:
getFieldFlags
in interfaceBuilderMessage
- Returns:
- Get the flags for all fields.
-
getFlagFields
@NotNull public @NotNull java.util.Map<java.lang.String,java.util.Collection<java.lang.String>> getFlagFields()
- Specified by:
getFlagFields
in interfaceBuilderMessage
- Returns:
- Get the fields for all flags.
-
toString
@NotNull public @NotNull java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
from
@NotNull public static @NotNull TradeDetailsPartsDef.TradeDetailsFields from(@NotNull @NotNull java.util.Map<java.lang.String,java.lang.String> fields)
-
from
@NotNull public static @NotNull TradeDetailsPartsDef.TradeDetailsFields from(@NotNull @NotNull java.util.Map<java.lang.String,java.lang.String> fields, @NotNull @NotNull java.lang.String fieldPrefix)
-
newBuilder
@NotNull public static @NotNull TradeDetailsPartsDef.TradeDetailsFields.Builder newBuilder()
-
-