Uses of Interface
org.apfloat.spi.CarryCRTBuilder
-
Packages that use CarryCRTBuilder Package Description org.apfloat.internal Default implementations of the apfloat Service Provider Interface (SPI).org.apfloat.spi The apfloat Service Provider Interface (SPI). -
-
Uses of CarryCRTBuilder in org.apfloat.internal
Classes in org.apfloat.internal that implement CarryCRTBuilder Modifier and Type Class Description class
DoubleCarryCRTBuilder
Creates carry-CRT related objects, for thedouble
type.class
FloatCarryCRTBuilder
Creates carry-CRT related objects, for thefloat
type.class
IntCarryCRTBuilder
Creates carry-CRT related objects, for theint
type.class
LongCarryCRTBuilder
Creates carry-CRT related objects, for thelong
type.Fields in org.apfloat.internal declared as CarryCRTBuilder Modifier and Type Field Description private static CarryCRTBuilder<double[]>
DoubleBuilderFactory. carryCRTBuilder
private static CarryCRTBuilder<float[]>
FloatBuilderFactory. carryCRTBuilder
private static CarryCRTBuilder<int[]>
IntBuilderFactory. carryCRTBuilder
private static CarryCRTBuilder<long[]>
LongBuilderFactory. carryCRTBuilder
Methods in org.apfloat.internal that return CarryCRTBuilder Modifier and Type Method Description <T> CarryCRTBuilder<T>
DoubleBuilderFactory. getCarryCRTBuilder(java.lang.Class<T> elementArrayType)
<T> CarryCRTBuilder<T>
FloatBuilderFactory. getCarryCRTBuilder(java.lang.Class<T> elementArrayType)
<T> CarryCRTBuilder<T>
IntBuilderFactory. getCarryCRTBuilder(java.lang.Class<T> elementArrayType)
<T> CarryCRTBuilder<T>
LongBuilderFactory. getCarryCRTBuilder(java.lang.Class<T> elementArrayType)
-
Uses of CarryCRTBuilder in org.apfloat.spi
Methods in org.apfloat.spi that return CarryCRTBuilder Modifier and Type Method Description <T> CarryCRTBuilder<T>
BuilderFactory. getCarryCRTBuilder(java.lang.Class<T> elementArrayType)
Returns aCarryCRTBuilder
object.
-