/*
* CREDIT SUISSE IS WILLING TO LICENSE THIS SPECIFICATION TO YOU ONLY UPON THE CONDITION THAT YOU
* ACCEPT ALL OF THE TERMS CONTAINED IN THIS AGREEMENT. PLEASE READ THE TERMS AND CONDITIONS OF THIS
* AGREEMENT CAREFULLY. BY DOWNLOADING THIS SPECIFICATION, YOU ACCEPT THE TERMS AND CONDITIONS OF
* THE AGREEMENT. IF YOU ARE NOT WILLING TO BE BOUND BY IT, SELECT THE "DECLINE" BUTTON AT THE
* BOTTOM OF THIS PAGE. Specification: JSR-354 Money and Currency API ("Specification") Copyright
* (c) 2012-2013, Credit Suisse All rights reserved.
*/
package javax.money;
import java.io.Serializable;
This class models the spec/configuration for a rounding, modeled as MonetaryRounding
in a platform independent way. Each RoundingContext instance hereby has a roundingId
, which links to the RoundingProviderSpi
that must of the according rounding instance. The default roundingId
is default
.
A RoundingContext can take up arbitrary attributes that must be documented by the RoundingProviderSpi
implementations.
Examples for such additional attributes are RoundingMode
, MathContext
, additional regional information, e.g. if a given rounding is targeting cash rounding.
This class is immutable, serializable, thread-safe.
Author: Anatole Tresch
/**
* This class models the spec/configuration for a rounding, modeled as {@link javax.money.MonetaryRounding} in a
* platform independent way. Each RoundingContext instance hereby has a <code>roundingId</code>, which links
* to the {@link javax.money.spi.RoundingProviderSpi} that must of the according rounding instance. The
* <i>default</i> </i><code>roundingId</code> is <code>default</code>.
* <p>
* A RoundingContext can take up arbitrary attributes that must be documented by the
* {@link javax.money.spi.RoundingProviderSpi} implementations.
* <p>
* Examples for such additional attributes are
* {@link java.math.RoundingMode}, {@link java.math.MathContext}, additional regional information,
* e.g. if a given rounding is targeting cash rounding.
* <p>
* This class is immutable, serializable, thread-safe.
*
* @author Anatole Tresch
*/
public final class RoundingContext extends AbstractContext implements Serializable, CurrencySupplier {
private static final long serialVersionUID = -1879443887564347935L;
Attribute key used for the rounding name.
/**
* Attribute key used for the rounding name.
*/
static final String KEY_ROUNDING_NAME = "roundingName";
Constructor, used from the RoundingContextBuilder
. Params: - builder – the corresponding builder, not null.
/**
* Constructor, used from the {@link javax.money.RoundingContextBuilder}.
*
* @param builder the corresponding builder, not null.
*/
RoundingContext(RoundingContextBuilder builder) {
super(builder);
}
Get the (custom) rounding id.
Returns: the rounding id, or null.
/**
* Get the (custom) rounding id.
*
* @return the rounding id, or null.
*/
public String getRoundingName() {
return getText(KEY_ROUNDING_NAME);
}
Get the basic CurrencyUnit
, which is based for this rounding type. Returns: the target CurrencyUnit, or null.
/**
* Get the basic {@link javax.money.CurrencyUnit}, which is based for this rounding type.
*
* @return the target CurrencyUnit, or null.
*/
public CurrencyUnit getCurrency() {
return get(CurrencyUnit.class);
}
Allows to convert a instance into the corresponding CurrencyContextBuilder
, which allows to change the values and of another CurrencyContext
instance. Returns: a new Builder instance, preinitialized with the values from this instance.
/**
* Allows to convert a instance into the corresponding {@link javax.money.CurrencyContextBuilder}, which allows
* to change the values and of another {@link javax.money.CurrencyContext} instance.
*
* @return a new Builder instance, preinitialized with the values from this instance.
*/
public RoundingContextBuilder toBuilder() {
return RoundingContextBuilder.of(this);
}
}