Interface ApfloatBuilder

All Known Implementing Classes:
DoubleApfloatBuilder, FloatApfloatBuilder, IntApfloatBuilder, LongApfloatBuilder

public interface ApfloatBuilder
An ApfloatBuilder contains factory methods to create new instances of ApfloatImpl implementations.
Version:
1.0
Author:
Mikko Tommila
  • Method Summary

    Modifier and Type
    Method
    Description
    createApfloat(double value, long precision, int radix)
    Create a new ApfloatImpl instance from a double.
    createApfloat(long value, long precision, int radix)
    Create a new ApfloatImpl instance from a long.
    createApfloat(PushbackReader in, long precision, int radix, boolean isInteger)
    Create a new ApfloatImpl instance reading from a stream.
    createApfloat(String value, long precision, int radix, boolean isInteger)
    Create a new ApfloatImpl instance from a String.
  • Method Details