Uses of Class
com.opengamma.strata.basics.currency.MultiCurrencyAmountArray
-
Packages that use MultiCurrencyAmountArray Package Description com.opengamma.strata.basics.currency Representations of currency and money.com.opengamma.strata.data.scenario Basic types to model market data across scenarios. -
-
Uses of MultiCurrencyAmountArray in com.opengamma.strata.basics.currency
Methods in com.opengamma.strata.basics.currency that return MultiCurrencyAmountArray Modifier and Type Method Description MultiCurrencyAmountArray
MultiCurrencyAmountArray. minus(MultiCurrencyAmount amount)
Returns a new array containing the values from this array with the values from the amount subtracted.MultiCurrencyAmountArray
MultiCurrencyAmountArray. minus(MultiCurrencyAmountArray other)
Returns a new array containing the values from this array with the values from the other array subtracted.static MultiCurrencyAmountArray
MultiCurrencyAmountArray. of(int size, IntFunction<MultiCurrencyAmount> valueFunction)
Obtains an instance using a function to create the entries.static MultiCurrencyAmountArray
MultiCurrencyAmountArray. of(MultiCurrencyAmount... amounts)
Obtains an instance from the specified multi-currency amounts.static MultiCurrencyAmountArray
MultiCurrencyAmountArray. of(List<MultiCurrencyAmount> amounts)
Obtains an instance from the specified multi-currency amounts.static MultiCurrencyAmountArray
MultiCurrencyAmountArray. of(Map<Currency,DoubleArray> values)
Obtains an instance from a map of amounts.MultiCurrencyAmountArray
MultiCurrencyAmountArray. plus(MultiCurrencyAmount amount)
Returns a new array containing the values from this array with the values from the amount added.MultiCurrencyAmountArray
MultiCurrencyAmountArray. plus(MultiCurrencyAmountArray other)
Returns a new array containing the values from this array added to the values in the other array.static MultiCurrencyAmountArray
MultiCurrencyAmountArray. total(Iterable<CurrencyAmountArray> arrays)
Returns a multi currency amount array representing the total of the input arrays.Methods in com.opengamma.strata.basics.currency that return types with arguments of type MultiCurrencyAmountArray Modifier and Type Method Description Class<? extends MultiCurrencyAmountArray>
MultiCurrencyAmountArray.Meta. beanType()
org.joda.beans.BeanBuilder<? extends MultiCurrencyAmountArray>
MultiCurrencyAmountArray.Meta. builder()
static Collector<CurrencyAmountArray,?,MultiCurrencyAmountArray>
MultiCurrencyAmountArray. toMultiCurrencyAmountArray()
Returns a collector which creates a multi currency amount array by combining a stream of currency amount arrays.Methods in com.opengamma.strata.basics.currency with parameters of type MultiCurrencyAmountArray Modifier and Type Method Description MultiCurrencyAmountArray
MultiCurrencyAmountArray. minus(MultiCurrencyAmountArray other)
Returns a new array containing the values from this array with the values from the other array subtracted.MultiCurrencyAmountArray
MultiCurrencyAmountArray. plus(MultiCurrencyAmountArray other)
Returns a new array containing the values from this array added to the values in the other array. -
Uses of MultiCurrencyAmountArray in com.opengamma.strata.data.scenario
Methods in com.opengamma.strata.data.scenario that return MultiCurrencyAmountArray Modifier and Type Method Description MultiCurrencyAmountArray
MultiCurrencyScenarioArray. getAmounts()
Gets the multi-currency amounts, one per scenario.Methods in com.opengamma.strata.data.scenario that return types with arguments of type MultiCurrencyAmountArray Modifier and Type Method Description org.joda.beans.MetaProperty<MultiCurrencyAmountArray>
MultiCurrencyScenarioArray.Meta. amounts()
The meta-property for theamounts
property.Methods in com.opengamma.strata.data.scenario with parameters of type MultiCurrencyAmountArray Modifier and Type Method Description static MultiCurrencyScenarioArray
MultiCurrencyScenarioArray. of(MultiCurrencyAmountArray amounts)
Obtains an instance from the specified currency and array of values.
-