Uses of Interface
org.joda.money.BigMoneyProvider
Packages that use BigMoneyProvider
-
Uses of BigMoneyProvider in org.joda.money
Classes in org.joda.money that implement BigMoneyProviderModifier and TypeClassDescriptionfinal classAn amount of money with unrestricted decimal place precision.final classAn amount of money with the standard decimal places defined by the currency.Methods in org.joda.money with parameters of type BigMoneyProviderModifier and TypeMethodDescriptionintBigMoney.compareTo(BigMoneyProvider other) Compares this monetary value to another.intMoney.compareTo(BigMoneyProvider other) Compares this monetary value to another.booleanBigMoney.isEqual(BigMoneyProvider other) Checks if this monetary value is equal to another.booleanMoney.isEqual(BigMoneyProvider other) Checks if this monetary value is equal to another.booleanBigMoney.isGreaterThan(BigMoneyProvider other) Checks if this monetary value is greater than another.booleanMoney.isGreaterThan(BigMoneyProvider other) Checks if this monetary value is greater than another.booleanBigMoney.isGreaterThanOrEqual(BigMoneyProvider other) Checks if this monetary value is greater than or equal to another.booleanMoney.isGreaterThanOrEqual(BigMoneyProvider other) Checks if this monetary value is greater than or equal to another.booleanBigMoney.isLessThan(BigMoneyProvider other) Checks if this monetary value is less than another.booleanMoney.isLessThan(BigMoneyProvider other) Checks if this monetary value is less than another.booleanBigMoney.isLessThanOrEqual(BigMoneyProvider other) Checks if this monetary value is less or equal to than another.booleanMoney.isLessThanOrEqual(BigMoneyProvider other) Checks if this monetary value is less than or equal to another.static booleanMoneyUtils.isNegative(BigMoneyProvider moneyProvider) Checks if the monetary value is negative and non-zero, treating null as zero.static booleanMoneyUtils.isNegativeOrZero(BigMoneyProvider moneyProvider) Checks if the monetary value is negative or zero, treating null as zero.static booleanMoneyUtils.isPositive(BigMoneyProvider moneyProvider) Checks if the monetary value is positive and non-zero, treating null as zero.static booleanMoneyUtils.isPositiveOrZero(BigMoneyProvider moneyProvider) Checks if the monetary value is positive or zero, treating null as zero.booleanBigMoney.isSameCurrency(BigMoneyProvider money) Checks if this instance and the specified instance have the same currency.booleanMoney.isSameCurrency(BigMoneyProvider other) Checks if this instance and the specified instance have the same currency.static booleanMoneyUtils.isZero(BigMoneyProvider moneyProvider) Checks if the monetary value is zero, treating null as zero.BigMoney.minus(BigMoneyProvider moneyToSubtract) Returns a copy of this monetary value with the amount subtracted.BigMoney.minusRetainScale(BigMoneyProvider moneyToSubtract, RoundingMode roundingMode) Returns a copy of this monetary value with the amount in the same currency subtracted retaining the scale by rounding the result.static BigMoneyBigMoney.of(BigMoneyProvider moneyProvider) Obtains an instance ofBigMoneyfrom a provider.static MoneyMoney.of(BigMoneyProvider moneyProvider) Obtains an instance ofMoneyfrom a provider.static MoneyMoney.of(BigMoneyProvider moneyProvider, RoundingMode roundingMode) Obtains an instance ofMoneyfrom a provider, rounding as necessary.BigMoney.plus(BigMoneyProvider moneyToAdd) Returns a copy of this monetary value with the amount added.BigMoney.plusRetainScale(BigMoneyProvider moneyToAdd, RoundingMode roundingMode) Returns a copy of this monetary value with the amount in the same currency added retaining the scale by rounding the result.static BigMoneyBigMoney.total(BigMoneyProvider... monies) Obtains an instance ofBigMoneyas the total value of an array.static BigMoneyBigMoney.total(CurrencyUnit currency, BigMoneyProvider... monies) Obtains an instance ofMoneyas the total value of a possibly empty array.Method parameters in org.joda.money with type arguments of type BigMoneyProviderModifier and TypeMethodDescriptionBigMoney.minus(Iterable<? extends BigMoneyProvider> moniesToSubtract) Returns a copy of this monetary value with a collection of monetary amounts subtracted.BigMoney.plus(Iterable<? extends BigMoneyProvider> moniesToAdd) Returns a copy of this monetary value with a collection of monetary amounts added.static BigMoneyBigMoney.total(Iterable<? extends BigMoneyProvider> monies) Obtains an instance ofBigMoneyas the total value of a collection.static BigMoneyBigMoney.total(CurrencyUnit currency, Iterable<? extends BigMoneyProvider> monies) Obtains an instance ofMoneyas the total value of a possibly empty collection. -
Uses of BigMoneyProvider in org.joda.money.format
Methods in org.joda.money.format with parameters of type BigMoneyProviderModifier and TypeMethodDescriptionvoidMoneyFormatter.print(Appendable appendable, BigMoneyProvider moneyProvider) Prints a monetary value to anAppendableconverting anyIOExceptionto aMoneyFormatException.MoneyFormatter.print(BigMoneyProvider moneyProvider) Prints a monetary value to aString.voidMoneyFormatter.printIO(Appendable appendable, BigMoneyProvider moneyProvider) Prints a monetary value to anAppendablepotentially throwing anIOException.