Class CurrencyAmountArray

    • Method Detail

      • of

        public static CurrencyAmountArray of​(Currency currency,
                                             DoubleArray values)
        Obtains an instance from the specified currency and array of values.
        Parameters:
        currency - the currency of the values
        values - the values
        Returns:
        an instance with the specified currency and values
      • of

        public static CurrencyAmountArray of​(List<CurrencyAmount> amounts)
        Obtains an instance from the specified list of amounts.

        All amounts must have the same currency.

        Parameters:
        amounts - the amounts, at least size one
        Returns:
        an instance with the specified amounts
        Throws:
        IllegalArgumentException - if multiple currencies are found
      • size

        public int size()
        Gets the size of the array.
        Returns:
        the array size
      • get

        public CurrencyAmount get​(int index)
        Gets the amount at the specified index.
        Parameters:
        index - the zero-based index to retrieve
        Returns:
        the amount at the specified index
      • stream

        public Stream<CurrencyAmount> stream()
        Returns a stream of the amounts.
        Returns:
        a stream of the amounts
      • convertedTo

        public CurrencyAmountArray convertedTo​(Currency resultCurrency,
                                               FxRateProvider fxRateProvider)
        Description copied from interface: FxConvertible
        Converts this instance to an equivalent amount in the specified currency.

        The result, which may be of a different type, will be expressed in terms of the given currency. Any FX conversion that is required will use rates from the provider.

        Specified by:
        convertedTo in interface FxConvertible<CurrencyAmountArray>
        Parameters:
        resultCurrency - the currency of the result
        fxRateProvider - the provider of FX rates
        Returns:
        the converted instance, which should be expressed in the specified currency
      • plus

        public CurrencyAmountArray plus​(CurrencyAmountArray other)
        Returns a new array containing the values from this array added to the values in the other array.

        The amounts are added to the matching element in this array. The currency must be the same as the currency of this array. The arrays must have the same size.

        Parameters:
        other - another array of multiple currency values.
        Returns:
        a new array containing the values from this array added to the values in the other array
        Throws:
        IllegalArgumentException - if the arrays have different sizes or different currencies
      • plus

        public CurrencyAmountArray plus​(CurrencyAmount amount)
        Returns a new array containing the values from this array with the specified amount added.

        The amount is added to each element in this array. The currency must be the same as the currency of this array.

        Parameters:
        amount - the amount to add
        Returns:
        a new array containing the values from this array with the specified amount added
        Throws:
        IllegalArgumentException - if the array and the amount have different currencies
      • minus

        public CurrencyAmountArray minus​(CurrencyAmountArray other)
        Returns a new array containing the values from this array with the values from the other array subtracted.

        The amounts are subtracted from the matching element in this array. The currency must be the same as the currency of this array. The arrays must have the same size.

        Parameters:
        other - another array of multiple currency values.
        Returns:
        a new array containing the values from this array with the values from the other array subtracted
        Throws:
        IllegalArgumentException - if the arrays have different sizes or different currencies
      • minus

        public CurrencyAmountArray minus​(CurrencyAmount amount)
        Returns a new array containing the values from this array with the specified amount subtracted.

        The amount is subtracted from each element in this array. The currency must be the same as the currency of this array.

        Parameters:
        amount - the amount to subtract
        Returns:
        a new array containing the values from this array with the specified amount subtracted
        Throws:
        IllegalArgumentException - if the array and the amount have different currencies
      • meta

        public static CurrencyAmountArray.Meta meta()
        The meta-bean for CurrencyAmountArray.
        Returns:
        the meta-bean, not null
      • getCurrency

        public Currency getCurrency()
        Gets the currency. All amounts have the same currency.
        Returns:
        the value of the property, not null
      • getValues

        public DoubleArray getValues()
        Gets the values.
        Returns:
        the value of the property, not null
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object