Skip navigation links
A B C D E F G H I L M N O P R S T Z 

A

abs() - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns the absolute value of this BigFraction.
abs() - Method in class org.apache.commons.numbers.fraction.Fraction
Returns the absolute value of this fraction.
AbstractFormat - Class in org.apache.commons.numbers.fraction
Common part shared by both FractionFormat and BigFractionFormat.
AbstractFormat() - Constructor for class org.apache.commons.numbers.fraction.AbstractFormat
Create an improper formatting instance with the default number format for the numerator and denominator.
AbstractFormat(NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.AbstractFormat
Create an improper formatting instance with a custom number format for both the numerator and denominator.
AbstractFormat(NumberFormat, NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.AbstractFormat
Create an improper formatting instance with a custom number format for the numerator and a custom number format for the denominator.
add(BigInteger) - Method in class org.apache.commons.numbers.fraction.BigFraction
Adds the value of this fraction to the passed BigInteger, returning the result in reduced form.
add(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Adds the value of this fraction to the passed integer, returning the result in reduced form.
add(long) - Method in class org.apache.commons.numbers.fraction.BigFraction
Adds the value of this fraction to the passed long, returning the result in reduced form.
add(BigFraction) - Method in class org.apache.commons.numbers.fraction.BigFraction
Adds the value of this fraction to another, returning the result in reduced form.
add(Fraction) - Method in class org.apache.commons.numbers.fraction.Fraction
Adds the value of this fraction to another, returning the result in reduced form.
add(int) - Method in class org.apache.commons.numbers.fraction.Fraction
Add an integer to the fraction.

B

bigDecimalValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a BigDecimal.
bigDecimalValue(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a BigDecimal following the passed rounding mode.
bigDecimalValue(int, int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a BigDecimal following the passed scale and rounding mode.
BigFraction - Class in org.apache.commons.numbers.fraction
Representation of a rational number without any overflow.
BigFraction(BigInteger) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction equivalent to the passed BigInteger, ie "num / 1".
BigFraction(BigInteger, BigInteger) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction given the numerator and denominator as BigInteger.
BigFraction(double) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a fraction given the double value.
BigFraction(double, double, int) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a fraction given the double value and maximum error allowed.
BigFraction(double, int) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a fraction given the double value and maximum denominator.
BigFraction(int) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction equivalent to the passed int, ie "num / 1".
BigFraction(int, int) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction given the numerator and denominator as simple int.
BigFraction(long) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction equivalent to the passed long, ie "num / 1".
BigFraction(long, long) - Constructor for class org.apache.commons.numbers.fraction.BigFraction
Create a BigFraction given the numerator and denominator as simple long.
BigFractionFormat - Class in org.apache.commons.numbers.fraction
Formats a BigFraction number in proper format or improper format.
BigFractionFormat() - Constructor for class org.apache.commons.numbers.fraction.BigFractionFormat
Create an improper formatting instance with the default number format for the numerator and denominator.
BigFractionFormat(NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.BigFractionFormat
Create an improper formatting instance with a custom number format for both the numerator and denominator.
BigFractionFormat(NumberFormat, NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.BigFractionFormat
Create an improper formatting instance with a custom number format for the numerator and a custom number format for the denominator.

C

compareTo(BigFraction) - Method in class org.apache.commons.numbers.fraction.BigFraction
Compares this object to another based on size.
compareTo(Fraction) - Method in class org.apache.commons.numbers.fraction.Fraction
Compares this object to another based on size.
ContinuedFraction - Class in org.apache.commons.numbers.fraction
Provides a generic means to evaluate continued fractions.
ContinuedFraction() - Constructor for class org.apache.commons.numbers.fraction.ContinuedFraction
 

D

divide(BigInteger) - Method in class org.apache.commons.numbers.fraction.BigFraction
Divide the value of this fraction by the passed BigInteger, ie this * 1 / bg, returning the result in reduced form.
divide(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Divide the value of this fraction by the passed int, ie this * 1 / i, returning the result in reduced form.
divide(long) - Method in class org.apache.commons.numbers.fraction.BigFraction
Divide the value of this fraction by the passed long, ie this * 1 / l, returning the result in reduced form.
divide(BigFraction) - Method in class org.apache.commons.numbers.fraction.BigFraction
Divide the value of this fraction by another, returning the result in reduced form.
divide(Fraction) - Method in class org.apache.commons.numbers.fraction.Fraction
Divide the value of this fraction by another.
divide(int) - Method in class org.apache.commons.numbers.fraction.Fraction
Divide the fraction by an integer.
doubleValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a double.
doubleValue() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets the fraction as a double.

E

equals(Object) - Method in class org.apache.commons.numbers.fraction.BigFraction
Test for the equality of two fractions.
equals(Object) - Method in class org.apache.commons.numbers.fraction.Fraction
Test for the equality of two fractions.
evaluate(double) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Evaluates the continued fraction.
evaluate(double, double) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Evaluates the continued fraction.
evaluate(double, int) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Evaluates the continued fraction at the value x.
evaluate(double, double, int) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Evaluates the continued fraction.

F

floatValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a float.
floatValue() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets the fraction as a float.
format(double, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Formats a double value as a fraction and appends the result to a StringBuffer.
format(long, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Formats a long value as a fraction and appends the result to a StringBuffer.
format(BigFraction, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.BigFractionFormat
Formats a BigFraction object to produce a string.
format(Object, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.BigFractionFormat
Formats an object and appends the result to a StringBuffer.
format(Fraction, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.FractionFormat
Formats a Fraction object to produce a string.
format(Object, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.FractionFormat
Formats an object and appends the result to a StringBuffer.
format(BigFraction, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Formats a BigFraction object to produce a string.
format(Fraction, StringBuffer, FieldPosition) - Method in class org.apache.commons.numbers.fraction.ProperFractionFormat
Formats a Fraction object to produce a string.
formatBigFraction(BigFraction) - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
This static method calls formatBigFraction() on a default instance of BigFractionFormat.
formatFraction(Fraction) - Static method in class org.apache.commons.numbers.fraction.FractionFormat
This static method calls formatFraction() on a default instance of FractionFormat.
FOUR_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "4/5".
FOUR_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "4/5".
Fraction - Class in org.apache.commons.numbers.fraction
Representation of a rational number.
Fraction(double) - Constructor for class org.apache.commons.numbers.fraction.Fraction
Create a fraction given the double value.
Fraction(double, double, int) - Constructor for class org.apache.commons.numbers.fraction.Fraction
Create a fraction given the double value and maximum error allowed.
Fraction(double, int) - Constructor for class org.apache.commons.numbers.fraction.Fraction
Create a fraction given the double value and maximum denominator.
Fraction(int) - Constructor for class org.apache.commons.numbers.fraction.Fraction
Create a fraction from an int.
Fraction(int, int) - Constructor for class org.apache.commons.numbers.fraction.Fraction
Create a fraction given the numerator and denominator.
FractionFormat - Class in org.apache.commons.numbers.fraction
Formats a Fraction number in proper format or improper format.
FractionFormat() - Constructor for class org.apache.commons.numbers.fraction.FractionFormat
Create an improper formatting instance with the default number format for the numerator and denominator.
FractionFormat(NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.FractionFormat
Create an improper formatting instance with a custom number format for both the numerator and denominator.
FractionFormat(NumberFormat, NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.FractionFormat
Create an improper formatting instance with a custom number format for the numerator and a custom number format for the denominator.

G

getA(int, double) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Defines the n-th "a" coefficient of the continued fraction.
getAvailableLocales() - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
Get the set of locales for which complex formats are available.
getAvailableLocales() - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Get the set of locales for which complex formats are available.
getB(int, double) - Method in class org.apache.commons.numbers.fraction.ContinuedFraction
Defines the n-th "b" coefficient of the continued fraction.
getDefaultNumberFormat() - Static method in class org.apache.commons.numbers.fraction.AbstractFormat
Create a default number format.
getDefaultNumberFormat(Locale) - Static method in class org.apache.commons.numbers.fraction.AbstractFormat
Create a default number format.
getDefaultNumberFormat() - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Create a default number format.
getDenominator() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the denominator as a BigInteger.
getDenominator() - Method in class org.apache.commons.numbers.fraction.Fraction
Access the denominator.
getDenominatorAsInt() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the denominator as a int.
getDenominatorAsLong() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the denominator as a long.
getDenominatorFormat() - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Access the denominator format.
getImproperInstance() - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
Returns the default complex format for the current locale.
getImproperInstance(Locale) - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
Returns the default complex format for the given locale.
getImproperInstance() - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Returns the default complex format for the current locale.
getImproperInstance(Locale) - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Returns the default complex format for the given locale.
getNumerator() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the numerator as a BigInteger.
getNumerator() - Method in class org.apache.commons.numbers.fraction.Fraction
Access the numerator.
getNumeratorAsInt() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the numerator as a int.
getNumeratorAsLong() - Method in class org.apache.commons.numbers.fraction.BigFraction
Access the numerator as a long.
getNumeratorFormat() - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Access the numerator format.
getProperInstance() - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
Returns the default complex format for the current locale.
getProperInstance(Locale) - Static method in class org.apache.commons.numbers.fraction.BigFractionFormat
Returns the default complex format for the given locale.
getProperInstance() - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Returns the default complex format for the current locale.
getProperInstance(Locale) - Static method in class org.apache.commons.numbers.fraction.FractionFormat
Returns the default complex format for the given locale.
getReducedFraction(int, int) - Static method in class org.apache.commons.numbers.fraction.BigFraction
Creates a BigFraction instance with the 2 parts of a fraction Y/Z.
getReducedFraction(int, int) - Static method in class org.apache.commons.numbers.fraction.Fraction
Creates a Fraction instance with the 2 parts of a fraction Y/Z.
getWholeFormat() - Method in class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Access the whole format.
getWholeFormat() - Method in class org.apache.commons.numbers.fraction.ProperFractionFormat
Access the whole format.

H

hashCode() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets a hashCode for the fraction.
hashCode() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets a hashCode for the fraction.

I

intValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as an int.
intValue() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets the fraction as an int.

L

longValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction as a long.
longValue() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets the fraction as a long.

M

MINUS_ONE - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "-1 / 1".
MINUS_ONE - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "-1 / 1".
multiply(BigInteger) - Method in class org.apache.commons.numbers.fraction.BigFraction
Multiplies the value of this fraction by the passed BigInteger, returning the result in reduced form.
multiply(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Multiply the value of this fraction by the passed int, returning the result in reduced form.
multiply(long) - Method in class org.apache.commons.numbers.fraction.BigFraction
Multiply the value of this fraction by the passed long, returning the result in reduced form.
multiply(BigFraction) - Method in class org.apache.commons.numbers.fraction.BigFraction
Multiplies the value of this fraction by another, returning the result in reduced form.
multiply(Fraction) - Method in class org.apache.commons.numbers.fraction.Fraction
Multiplies the value of this fraction by another, returning the result in reduced form.
multiply(int) - Method in class org.apache.commons.numbers.fraction.Fraction
Multiply the fraction by an integer.

N

negate() - Method in class org.apache.commons.numbers.fraction.BigFraction
Return the additive inverse of this fraction, returning the result in reduced form.
negate() - Method in class org.apache.commons.numbers.fraction.Fraction
Return the additive inverse of this fraction.

O

ONE - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "1".
ONE - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "1".
one() - Method in class org.apache.commons.numbers.fraction.Fraction
ONE_FIFTH - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "1/5".
ONE_FIFTH - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "1/5".
ONE_HALF - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "1/2".
ONE_HALF - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "1/2".
ONE_QUARTER - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "1/4".
ONE_QUARTER - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "1/4".
ONE_THIRD - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "1/3".
ONE_THIRD - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "1/3".
org.apache.commons.numbers.fraction - package org.apache.commons.numbers.fraction
Fraction number type and fraction number formatting.

P

parse(String) - Method in class org.apache.commons.numbers.fraction.BigFractionFormat
Parses a string to produce a BigFraction object.
parse(String, ParsePosition) - Method in class org.apache.commons.numbers.fraction.BigFractionFormat
Parses a string to produce a BigFraction object.
parse(String) - Method in class org.apache.commons.numbers.fraction.FractionFormat
Parses a string to produce a Fraction object.
parse(String, ParsePosition) - Method in class org.apache.commons.numbers.fraction.FractionFormat
Parses a string to produce a Fraction object.
parse(String, ParsePosition) - Method in class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Parses a string to produce a BigFraction object.
parse(String, ParsePosition) - Method in class org.apache.commons.numbers.fraction.ProperFractionFormat
Parses a string to produce a Fraction object.
parseAndIgnoreWhitespace(String, ParsePosition) - Static method in class org.apache.commons.numbers.fraction.AbstractFormat
Parses source until a non-whitespace character is found.
parseNextBigInteger(String, ParsePosition) - Method in class org.apache.commons.numbers.fraction.BigFractionFormat
Parses a string to produce a BigInteger.
parseNextCharacter(String, ParsePosition) - Static method in class org.apache.commons.numbers.fraction.AbstractFormat
Parses source until a non-whitespace character is found.
percentageValue() - Method in class org.apache.commons.numbers.fraction.BigFraction
Gets the fraction percentage as a double.
percentageValue() - Method in class org.apache.commons.numbers.fraction.Fraction
Gets the fraction percentage as a double.
pow(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns a BigFraction whose value is (this<sup>exponent</sup>), returning the result in reduced form.
pow(long) - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns a BigFraction whose value is (thisexponent), returning the result in reduced form.
pow(BigInteger) - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns a BigFraction whose value is (thisexponent), returning the result in reduced form.
pow(double) - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns a double whose value is (thisexponent), returning the result in reduced form.
pow(int) - Method in class org.apache.commons.numbers.fraction.Fraction
 
ProperBigFractionFormat - Class in org.apache.commons.numbers.fraction
Formats a BigFraction number in proper format.
ProperBigFractionFormat() - Constructor for class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Create a proper formatting instance with the default number format for the whole, numerator, and denominator.
ProperBigFractionFormat(NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Create a proper formatting instance with a custom number format for the whole, numerator, and denominator.
ProperBigFractionFormat(NumberFormat, NumberFormat, NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Create a proper formatting instance with a custom number format for each of the whole, numerator, and denominator.
ProperFractionFormat - Class in org.apache.commons.numbers.fraction
Formats a Fraction number in proper format.
ProperFractionFormat() - Constructor for class org.apache.commons.numbers.fraction.ProperFractionFormat
Create a proper formatting instance with the default number format for the whole, numerator, and denominator.
ProperFractionFormat(NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.ProperFractionFormat
Create a proper formatting instance with a custom number format for the whole, numerator, and denominator.
ProperFractionFormat(NumberFormat, NumberFormat, NumberFormat) - Constructor for class org.apache.commons.numbers.fraction.ProperFractionFormat
Create a proper formatting instance with a custom number format for each of the whole, numerator, and denominator.

R

reciprocal() - Method in class org.apache.commons.numbers.fraction.BigFraction
Return the multiplicative inverse of this fraction.
reciprocal() - Method in class org.apache.commons.numbers.fraction.Fraction
Return the multiplicative inverse of this fraction.
reduce() - Method in class org.apache.commons.numbers.fraction.BigFraction
Reduce this BigFraction to its lowest terms.

S

setDenominatorFormat(NumberFormat) - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Modify the denominator format.
setNumeratorFormat(NumberFormat) - Method in class org.apache.commons.numbers.fraction.AbstractFormat
Modify the numerator format.
setWholeFormat(NumberFormat) - Method in class org.apache.commons.numbers.fraction.ProperBigFractionFormat
Modify the whole format.
setWholeFormat(NumberFormat) - Method in class org.apache.commons.numbers.fraction.ProperFractionFormat
Modify the whole format.
subtract(BigInteger) - Method in class org.apache.commons.numbers.fraction.BigFraction
Subtracts the value of an BigInteger from the value of this BigFraction, returning the result in reduced form.
subtract(int) - Method in class org.apache.commons.numbers.fraction.BigFraction
Subtracts the value of an integer from the value of this BigFraction, returning the result in reduced form.
subtract(long) - Method in class org.apache.commons.numbers.fraction.BigFraction
Subtracts the value of a long from the value of this BigFraction, returning the result in reduced form.
subtract(BigFraction) - Method in class org.apache.commons.numbers.fraction.BigFraction
Subtracts the value of another fraction from the value of this one, returning the result in reduced form.
subtract(Fraction) - Method in class org.apache.commons.numbers.fraction.Fraction
Subtracts the value of another fraction from the value of this one, returning the result in reduced form.
subtract(int) - Method in class org.apache.commons.numbers.fraction.Fraction
Subtract an integer from the fraction.

T

THREE_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "3/5".
THREE_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "3/5".
THREE_QUARTERS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "3/4".
THREE_QUARTERS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "3/4".
toString() - Method in class org.apache.commons.numbers.fraction.BigFraction
Returns the String representing this fraction, ie "num / dem" or just "num" if the denominator is one.
toString() - Method in class org.apache.commons.numbers.fraction.Fraction
Returns the String representing this fraction, ie "num / dem" or just "num" if the denominator is one.
TWO - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "2 / 1".
TWO - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "2 / 1".
TWO_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "2/5".
TWO_FIFTHS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "2/5".
TWO_QUARTERS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "2/4".
TWO_QUARTERS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "2/4".
TWO_THIRDS - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "2/3".
TWO_THIRDS - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "2/3".

Z

ZERO - Static variable in class org.apache.commons.numbers.fraction.BigFraction
A fraction representing "0".
ZERO - Static variable in class org.apache.commons.numbers.fraction.Fraction
A fraction representing "0".
zero() - Method in class org.apache.commons.numbers.fraction.Fraction
A B C D E F G H I L M N O P R S T Z 
Skip navigation links

Copyright © 2017–2018 The Apache Software Foundation. All rights reserved.