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 intConverterFormatter. 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 RationalConverterRationalConverter. inverseWhenNotIdentity()static RationalConverterRationalConverter. of(double dividend, double divisor)Convenience method equivalent tonew RationalConverter(BigDecimal.valueOf(dividend).toBigInteger(), BigDecimal.valueOf(divisor).toBigInteger())static RationalConverterRationalConverter. of(long dividend, long divisor)Convenience method equivalent tonew RationalConverter(dividend, divisor)static RationalConverterRationalConverter. of(java.math.BigInteger dividend, java.math.BigInteger divisor)Convenience method equivalent tonew RationalConverter(dividend, divisor)RationalConverterPowersOfIntConverter. toRationalConverter()Methods in tech.units.indriya.function with parameters of type RationalConverter Modifier and Type Method Description private AbstractConverterRationalConverter. composeSameType(RationalConverter that)
-