All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opengamma.strata.product.swap.ScheduledSwapLeg Maven / Gradle / Ivy

There is a newer version: 2.12.48
Show newest version
/*
 * Copyright (C) 2019 - present by OpenGamma Inc. and the OpenGamma group of companies
 *
 * Please see distribution for license.
 */
package com.opengamma.strata.product.swap;

import com.opengamma.strata.basics.schedule.PeriodicSchedule;

/**
 * A swap leg that defines dates using a schedule.
 * 

* The swap is formed from a number of accrual periods and payment periods, defined by schedules. */ public interface ScheduledSwapLeg extends SwapLeg { /** * Gets the accrual period schedule. *

* This is used to define the accrual periods. * These are used directly or indirectly to determine other dates in the swap. * * @return the accrual schedule */ public abstract PeriodicSchedule getAccrualSchedule(); /** * Gets the payment period schedule. *

* This is used to define the payment periods, including any compounding. * The payment period dates are based on the accrual schedule. * * @return the payment schedule */ public abstract PaymentSchedule getPaymentSchedule(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy