Uses of Class
tech.units.indriya.function.RationalConverter
-
Packages that use RationalConverter Package Description tech.units.indriya.format tech.units.indriya.function This package provides functional interfaces. -
-
Uses of RationalConverter in tech.units.indriya.format
Methods in tech.units.indriya.format with parameters of type RationalConverter Modifier and Type Method Description private static int
ConverterFormatter. productPrecedence(RationalConverter converter, boolean continued, int unitPrecedence, java.lang.StringBuilder buffer)
-
Uses of RationalConverter in tech.units.indriya.function
Methods in tech.units.indriya.function that return RationalConverter Modifier and Type Method Description RationalConverter
RationalConverter. inverseWhenNotIdentity()
static RationalConverter
RationalConverter. of(double dividend, double divisor)
Convenience method equivalent tonew RationalConverter(BigDecimal.valueOf(dividend).toBigInteger(), BigDecimal.valueOf(divisor).toBigInteger())
static RationalConverter
RationalConverter. of(long dividend, long divisor)
Convenience method equivalent tonew RationalConverter(dividend, divisor)
static RationalConverter
RationalConverter. of(java.math.BigInteger dividend, java.math.BigInteger divisor)
Convenience method equivalent tonew RationalConverter(dividend, divisor)
RationalConverter
PowersOfIntConverter. toRationalConverter()
Methods in tech.units.indriya.function with parameters of type RationalConverter Modifier and Type Method Description private AbstractConverter
RationalConverter. composeSameType(RationalConverter that)
-