| Package | Description |
|---|---|
| tec.uom.se.format | |
| tec.uom.se.function |
This package provides functional interfaces.
|
| tec.uom.se.unit |
This package provides supports for physics units, in conformity with the
Units of Measurement API.
|
| Modifier and Type | Method and Description |
|---|---|
private static int |
FormatConverter.productPrecedence(RationalConverter converter,
boolean continued,
int unitPrecedence,
java.lang.StringBuilder buffer) |
| Modifier and Type | Method and Description |
|---|---|
RationalConverter |
RationalConverter.inverse() |
static RationalConverter |
RationalConverter.of(java.math.BigInteger dividend,
java.math.BigInteger divisor)
Convenience method equivalent to
new RationalConverter(dividend, divisor) |
static RationalConverter |
RationalConverter.of(double dividend,
double divisor)
Convenience method equivalent to
new RationalConverter(BigDecimal.valueOf(dividend).toBigInteger(),
BigDecimal.valueOf(divisor).toBigInteger()) |
static RationalConverter |
RationalConverter.of(long dividend,
long divisor)
Convenience method equivalent to
new RationalConverter(dividend, divisor) |
| Constructor and Description |
|---|
MetricPrefix(java.lang.String symbol,
RationalConverter converter)
Creates a new prefix.
|