A B D G M N O S T Z 
All Classes All Packages

A

add(BigFraction) - Method in class BigFraction
Return a BigFraction resulting from the addition of a given BigFraction b to this BigFraction.
asBigDecimal(int, RoundingMode) - Method in class BigFraction
Return a BigDecimal formed by converting the BigInteger numerator and denominator to BigDecimals and then dividing the BigDecimal numerator by the BigDecimal denominator using the given scale and rounding mode.

B

BigFraction - Class in <Unnamed>
BigFraction is composed of a BigInteger numerator and a BigInteger denominator.
BigFraction(long, long) - Constructor for class BigFraction
Construct a BigFraction given two long numerator and denominator values, convert and assign them to BigInteger numerator and denominator values.
BigFraction(BigFraction) - Constructor for class BigFraction
Given a BigFraction, copy its BigInteger numerator and denominator fields to the fields of the new BigFraction object.
BigFraction(String) - Constructor for class BigFraction
Given a String consisting of two integers separated by a single '/', initialize the numerator and denominator fields with BigIntegers constructed with the substrings before and after the '/', respectively.
BigFraction(BigInteger, BigInteger) - Constructor for class BigFraction
Given a BigInteger numerator and denominator, simplify the fraction by dividing both numerator and denominator by their greatest common divisor, and change signs such that the denominator is always positive.

D

divide(BigFraction) - Method in class BigFraction
Return a BigFraction resulting from the division of a given BigFraction b into this BigFraction.

G

getDen() - Method in class BigFraction
Return the BigInteger denominator of the BigFraction.
getNum() - Method in class BigFraction
Return the BigInteger numerator of the BigFraction.

M

multiply(BigFraction) - Method in class BigFraction
Return a BigFraction resulting from the multiplication of a given BigFraction b with this BigFraction.

N

negate() - Method in class BigFraction
Return a new BigFraction object with the same denominator and the negated numerator.

O

ONE - Static variable in class BigFraction
 

S

subtract(BigFraction) - Method in class BigFraction
Return a BigFraction resulting from the subtraction of a given BigFraction b from this BigFraction.

T

toString() - Method in class BigFraction
Return a String consisting of the numerator and denominator separated by a single '/'.

Z

ZERO - Static variable in class BigFraction
 
A B D G M N O S T Z 
All Classes All Packages