| Package | Description |
|---|---|
| org.javamoney.moneta |
Contains public core implementation artifacts, e.g.
|
| org.javamoney.moneta.spi |
Defines common base classes used for implementing SPIs and the
LoaderService. |
| Modifier and Type | Field and Description |
|---|---|
static FastMoney |
FastMoney.MAX_VALUE
Maximum possible value supported, using XX (no currency).
|
static FastMoney |
FastMoney.MIN_VALUE
Minimum possible value supported, using XX (no currency).
|
| Modifier and Type | Method and Description |
|---|---|
FastMoney |
FastMoney.abs() |
FastMoney |
FastMoney.add(MonetaryAmount amount) |
FastMoney |
FastMoney.divide(double divisor) |
FastMoney |
FastMoney.divide(long divisor) |
FastMoney |
FastMoney.divide(Number divisor) |
FastMoney[] |
FastMoney.divideAndRemainder(double divisor) |
FastMoney[] |
FastMoney.divideAndRemainder(long divisor) |
FastMoney[] |
FastMoney.divideAndRemainder(Number divisor) |
FastMoney |
FastMoney.divideToIntegralValue(double divisor) |
FastMoney |
FastMoney.divideToIntegralValue(long divisor) |
FastMoney |
FastMoney.divideToIntegralValue(Number divisor) |
static FastMoney |
FastMoney.from(MonetaryAmount amount) |
FastMoney |
FastMoney.multiply(double multiplicand) |
FastMoney |
FastMoney.multiply(long multiplicand) |
FastMoney |
FastMoney.multiply(Number multiplicand) |
FastMoney |
FastMoney.negate() |
static FastMoney |
FastMoney.of(Number number,
CurrencyUnit currency)
Static factory method for creating a new instance of
FastMoney. |
static FastMoney |
FastMoney.of(Number number,
String currencyCode)
Static factory method for creating a new instance of
FastMoney. |
static FastMoney |
FastMoney.of(NumberValue numberBinding,
CurrencyUnit currency)
Static factory method for creating a new instance of
FastMoney. |
static FastMoney |
FastMoney.ofMinor(CurrencyUnit currency,
long amountMinor)
Obtains an instance of
FastMoney from an amount in minor units. |
static FastMoney |
FastMoney.ofMinor(CurrencyUnit currency,
long amountMinor,
int factionDigits)
Obtains an instance of
FastMoney from an amount in minor units. |
static FastMoney |
FastMoney.parse(CharSequence text)
Obtains an instance of FastMoney from a text string such as 'EUR 25.25'.
|
static FastMoney |
FastMoney.parse(CharSequence text,
MonetaryAmountFormat formatter)
Obtains an instance of FastMoney from a text using specific formatter.
|
FastMoney |
FastMoney.plus() |
FastMoney |
FastMoney.remainder(double divisor) |
FastMoney |
FastMoney.remainder(long divisor) |
FastMoney |
FastMoney.remainder(Number divisor) |
FastMoney |
FastMoney.scaleByPowerOfTen(int n) |
FastMoney |
FastMoney.stripTrailingZeros() |
FastMoney |
FastMoney.subtract(MonetaryAmount subtrahend) |
FastMoney |
FastMoney.with(MonetaryOperator operator) |
static FastMoney |
FastMoney.zero(CurrencyUnit currency)
Obtains an instance of
FastMoney representing zero. |
| Modifier and Type | Method and Description |
|---|---|
MonetaryAmountFactory<FastMoney> |
FastMoney.getFactory() |
| Modifier and Type | Method and Description |
|---|---|
protected FastMoney |
FastMoneyAmountFactory.create(Number number,
CurrencyUnit currency,
MonetaryContext monetaryContext) |
| Modifier and Type | Method and Description |
|---|---|
MonetaryAmountFactory<FastMoney> |
FastMoneyAmountFactoryProvider.createMonetaryAmountFactory() |
Class<FastMoney> |
FastMoneyAmountFactory.getAmountType() |
Class<FastMoney> |
FastMoneyAmountFactoryProvider.getAmountType() |
Copyright © 2012–2020 JavaMoney. All rights reserved.