Uses of Class
javax.money.RoundingQuery
Package | Description |
---|---|
javax.money |
Main package of the Money and Currency API.
|
javax.money.spi |
SPI interfaces of the Money and Currency API, including bootstrap logic.
|
-
Uses of RoundingQuery in javax.money
Methods in javax.money that return RoundingQuery Modifier and Type Method Description RoundingQuery
RoundingQueryBuilder. build()
Creates a new instance ofRoundingQuery
.Methods in javax.money with parameters of type RoundingQuery Modifier and Type Method Description static MonetaryRounding
Monetary. getRounding(RoundingQuery roundingQuery)
Access aMonetaryRounding
using a possibly complex query.java.util.Collection<MonetaryRounding>
DefaultMonetaryRoundingsSingletonSpi. getRoundings(RoundingQuery query)
Query all roundings matching the givenRoundingQuery
.static java.util.Collection<MonetaryRounding>
Monetary. getRoundings(RoundingQuery roundingQuery)
Access multipleMonetaryRounding
instances using a possibly complex querystatic boolean
Monetary. isRoundingAvailable(RoundingQuery roundingQuery)
Checks if aMonetaryRounding
matching the query is available.static RoundingQueryBuilder
RoundingQueryBuilder. of(RoundingQuery roundingQuery)
Creates a new RoundingQueryBuilder. -
Uses of RoundingQuery in javax.money.spi
Methods in javax.money.spi with parameters of type RoundingQuery Modifier and Type Method Description default MonetaryRounding
MonetaryRoundingsSingletonSpi. getRounding(RoundingQuery query)
Query a specific rounding with the given query.MonetaryRounding
RoundingProviderSpi. getRounding(RoundingQuery query)
Evaluate the rounding that match the given query.java.util.Collection<MonetaryRounding>
MonetaryRoundingsSingletonSpi. getRoundings(RoundingQuery query)
Execute a query forMonetaryRounding
.default boolean
MonetaryRoundingsSingletonSpi. isRoundingAvailable(RoundingQuery query)
Checks if anyMonetaryRounding
is matching the given query.