/*
* 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;
Query for accessing instances of MonetaryRounding
. In general it is determined by the implementation, what roundings are provided. Nevertheless the following queries must be supported:
- Accessing roundings using rounding names and/or regular expressions.
- Accessing mathematical rounding by setting a scale and (optionally) a
MathContext
as additional generic attribute.
- Accessing default roundings for a
CurrencyUnit
. This method should return the most appropriate rounding for a currency. If no currency specific rounding is available, it should return a rounding with scale==currency
.getDefaultFractionUnits(), java.math.RoundingMode = RoundingMode.HALF_EVEN
.
All other roundings including cash rounding and historical roundings are optional.
This class is immutable, thread-safe and serializable.
/**
* Query for accessing instances of {@link javax.money.MonetaryRounding}. In general it is determined by the
* implementation, what roundings are provided. Nevertheless the following queries must be supported:
* <ul>
* <li>Accessing roundings using rounding names and/or regular expressions.</li>
* <li>Accessing mathematical rounding by setting a scale and (optionally) a {@link java.math.MathContext} as
* additional generic attribute.</li>
* <li>Accessing default roundings for a {@link javax.money.CurrencyUnit}. This method should return the most
* appropriate rounding for a currency. If no
* currency specific rounding is available, it should return a rounding with {@code scale==currency
* .getDefaultFractionUnits(), java.math.RoundingMode = RoundingMode.HALF_EVEN}.</li>
* </ul>
* All other roundings including cash rounding and historical roundings are optional.
* <p>
* This class is immutable, thread-safe and serializable.
*/
public final class RoundingQuery extends AbstractQuery implements CurrencySupplier {
private static final long serialVersionUID = -9088736532066489061L;
Attribute key used for the rounding name attribute.
/**
* Attribute key used for the rounding name attribute.
*/
static final String KEY_QUERY_ROUNDING_NAME = "Query.roundingName";
Attribute key used for the scale attribute.
/**
* Attribute key used for the scale attribute.
*/
static final String KEY_QUERY_SCALE = "Query.scale";
Constructor, used from the RoundingQueryBuilder
. Params: - builder – the corresponding builder, not null.
/**
* Constructor, used from the {@link javax.money.RoundingQueryBuilder}.
*
* @param builder the corresponding builder, not null.
*/
RoundingQuery(RoundingQueryBuilder builder) {
super(builder);
}
Gets the target rounding name. This method allows to access the MonetaryRounding
instances by passing a name, which most of the time identifies a certain rounding instance. Each entry is first matched as name on equality. If no instance with such a name exists, the value passed is interpreted as a regular expression to lookup roundings. Returns: the rounding id or null.
/**
* Gets the target rounding name. This method allows to
* access the {@link javax.money.MonetaryRounding} instances by passing a name, which most of the time
* identifies a certain rounding instance. Each entry is first matched as name on equality. If no instance
* with such a name exists, the value passed is interpreted as a regular
* expression to lookup roundings.
*
* @return the rounding id or null.
*/
public String getRoundingName() {
return getText(KEY_QUERY_ROUNDING_NAME);
}
Gets the target scale. This allows to define the scale required. If not specified as additional
attribute, by default, RoundingMode.HALF_EVEN is used hereby.
Returns: the target scale or null.
/**
* Gets the target scale. This allows to define the scale required. If not specified as additional
* attribute, by default, RoundingMode.HALF_EVEN is used hereby.
*
* @return the target scale or null.
*/
public Integer getScale() {
return getInt(KEY_QUERY_SCALE);
}
Sets the target CurrencyUnit. Typically this determines all other properties,
such as scale and the concrete rounding algorithm. With
rounding names, depending on the implementation, additional sub-selections are possible. Similarly
additional attributes can be used to select special rounding instances, e.g. for cash rounding.
Returns: the CurrencyUnit, or null.
/**
* Sets the target CurrencyUnit. Typically this determines all other properties,
* such as scale and the concrete rounding algorithm. With
* rounding names, depending on the implementation, additional sub-selections are possible. Similarly
* additional attributes can be used to select special rounding instances, e.g. for cash rounding.
*
* @return the CurrencyUnit, or null.
*/
@Override
public CurrencyUnit getCurrency() {
return get(CurrencyUnit.class);
}
Creates a new builder instances, initialized with the data from this one.
Returns: a new RoundingQueryBuilder
instance, never null.
/**
* Creates a new builder instances, initialized with the data from this one.
*
* @return a new {@link javax.money.RoundingQueryBuilder} instance, never null.
*/
public RoundingQueryBuilder toBuilder() {
return RoundingQueryBuilder.of(this);
}
}