com.opengamma.strata.market.amount.LegAmount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-market Show documentation
Show all versions of strata-market Show documentation
Entities describing the financial market
/*
* Copyright (C) 2015 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.market.amount;
import com.opengamma.strata.basics.currency.CurrencyAmount;
import com.opengamma.strata.basics.currency.FxConvertible;
/**
* Represents an amount of a currency associated with one leg of an instrument.
*/
public interface LegAmount extends FxConvertible {
/**
* Gets the amount associated with the leg.
*
* @return the amount
*/
public abstract CurrencyAmount getAmount();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy