Class CapitalIndexedBondPaymentPeriod

  • All Implemented Interfaces:
    BondPaymentPeriod, Serializable, org.joda.beans.Bean, org.joda.beans.ImmutableBean

    public final class CapitalIndexedBondPaymentPeriod
    extends Object
    implements BondPaymentPeriod, org.joda.beans.ImmutableBean, Serializable
    A coupon or nominal payment of capital indexed bonds.

    A single payment period within a capital indexed bond, ResolvedCapitalIndexedBond. Since All the cash flows of the capital indexed bond are adjusted for inflation, both of the periodic payments and nominal payment are represented by this class.

    See Also:
    Serialized Form
    • Method Detail

      • collectIndices

        public void collectIndices​(ImmutableSet.Builder<Index> builder)
        Description copied from interface: BondPaymentPeriod
        Collects all the indices referred to by this period.

        A period will typically refer to at least one index, such as 'GBP-LIBOR-3M'. Each index that is referred to must be added to the specified builder.

        Specified by:
        collectIndices in interface BondPaymentPeriod
        Parameters:
        builder - the builder to use
      • getPaymentDate

        public LocalDate getPaymentDate()
        Description copied from interface: BondPaymentPeriod
        Gets the date that the payment is made.

        Each payment period has a single payment date. This date has been adjusted to be a valid business day.

        Specified by:
        getPaymentDate in interface BondPaymentPeriod
        Returns:
        the payment date of the period
      • hasExCouponPeriod

        public boolean hasExCouponPeriod()
        Checks if there is an ex-coupon period.
        Returns:
        true if has an ex-coupon period
      • getCurrency

        public Currency getCurrency()
        Gets the primary currency of the payment period.

        The amounts of the notional are usually expressed in terms of this currency, however they can be converted from amounts in a different currency.

        Specified by:
        getCurrency in interface BondPaymentPeriod
        Returns:
        the value of the property, not null
      • getNotional

        public double getNotional()
        Gets the notional amount, must be non-zero.

        The notional amount applicable during the period. The currency of the notional is specified by currency.

        Returns:
        the value of the property
      • getRealCoupon

        public double getRealCoupon()
        Gets the rate of real coupon.

        The real coupon is the rate before taking the inflation into account. For example, a real coupon of c for semi-annual payments is c/2.

        Returns:
        the value of the property
      • getStartDate

        public LocalDate getStartDate()
        Gets the start date of the payment period.

        This is the first date in the period. If the schedule adjusts for business days, then this is the adjusted date.

        Specified by:
        getStartDate in interface BondPaymentPeriod
        Returns:
        the value of the property, not null
      • getEndDate

        public LocalDate getEndDate()
        Gets the end date of the payment period.

        This is the last date in the period. If the schedule adjusts for business days, then this is the adjusted date.

        Specified by:
        getEndDate in interface BondPaymentPeriod
        Returns:
        the value of the property, not null
      • getUnadjustedStartDate

        public LocalDate getUnadjustedStartDate()
        Gets the unadjusted start date.

        The start date before any business day adjustment is applied.

        When building, this will default to the start date if not specified.

        Returns:
        the value of the property, not null
      • getUnadjustedEndDate

        public LocalDate getUnadjustedEndDate()
        Gets the unadjusted end date.

        The end date before any business day adjustment is applied.

        When building, this will default to the end date if not specified.

        Returns:
        the value of the property, not null
      • getDetachmentDate

        public LocalDate getDetachmentDate()
        Gets the detachment date.

        Some bonds trade ex-coupon before the coupon payment. The coupon is paid not to the owner of the bond on the payment date but to the owner of the bond on the detachment date.

        When building, this will default to the end date if not specified.

        Returns:
        the value of the property, not null
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object