gcc/libjava/doc/java-math.texi
Anthony Green 6a9d31a7d4 001-01-07 Anthony Green <green@redhat.com>
* Makefile.am (texinfo): Add texinfo target for generating texinfo
        documentation.
	* Makefile.in: Rebuilt.

	* scripts/TexinfoDoclet.java: New file.

	* doc/java-applet.texi, doc/java-lang-reflect.texi,
	doc/java-awt-color.texi, doc/java-lang.texi,
	doc/java-awt-datatransfer.texi, doc/java-math.texi,
        doc/java-awt-event.texi, doc/java-net.texi,
	doc/java-awt-geom.texi, doc/java-security-spec.texi,
	doc/java-awt-image.texi, doc/java-security.texi,
	doc/java-awt-peer.texi, doc/java-sql.texi, doc/java-awt.texi,
	doc/java-text.texi, doc/java-beans-beancontext.texi,
        doc/java-util-jar.texi, doc/java-beans.texi,
	doc/java-util-zip.texi, doc/java-io.texi, doc/java-util.texi,
	doc/java-lang-ref.texi: New files.

From-SVN: r38789
2001-01-08 00:27:51 +00:00

207 lines
7.0 KiB
Plaintext

@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val}, int@w{ }@var{scale}) @*throws NumberFormatException
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} add (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} subtract (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} multiply (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{newScale}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException
@end deftypemethod
@deftypemethod BigDecimal {public int} compareTo (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public int} compareTo (java.lang.Object@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public boolean} equals (java.lang.Object@w{ }@var{o})
@end deftypemethod
@deftypemethod BigDecimal {public int} hashCode ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} max (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} min (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} movePointLeft (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} movePointRight (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigDecimal {public int} signum ()
@end deftypemethod
@deftypemethod BigDecimal {public int} scale ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} abs ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} negate ()
@end deftypemethod
@deftypemethod BigDecimal {public String} toString ()
@end deftypemethod
@deftypemethod BigDecimal {public BigInteger} toBigInteger ()
@end deftypemethod
@deftypemethod BigDecimal {public int} intValue ()
@end deftypemethod
@deftypemethod BigDecimal {public long} longValue ()
@end deftypemethod
@deftypemethod BigDecimal {public float} floatValue ()
@end deftypemethod
@deftypemethod BigDecimal {public double} doubleValue ()
@end deftypemethod
@deftypemethod BigInteger {public static BigInteger} valueOf (long@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public int} signum ()
@end deftypemethod
@deftypemethod BigInteger {public int} compareTo (java.lang.Object@w{ }@var{obj})
@end deftypemethod
@deftypemethod BigInteger {public int} compareTo (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} min (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} max (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} add (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} subtract (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} multiply (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} divide (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} remainder (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} divideAndRemainder (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} mod (java.math.BigInteger@w{ }@var{m})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} pow (int@w{ }@var{exponent})
Calculate the integral power of a BigInteger.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} modInverse (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} modPow (java.math.BigInteger@w{ }@var{exponent}, java.math.BigInteger@w{ }@var{m})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} gcd (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public boolean} isProbablePrime (int@w{ }@var{certainty})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} shiftLeft (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} shiftRight (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public String} toString ()
@end deftypemethod
@deftypemethod BigInteger {public String} toString (int@w{ }@var{radix})
@end deftypemethod
@deftypemethod BigInteger {public int} intValue ()
@end deftypemethod
@deftypemethod BigInteger {public long} longValue ()
@end deftypemethod
@deftypemethod BigInteger {public int} hashCode ()
@end deftypemethod
@deftypemethod BigInteger {public boolean} equals (java.lang.Object@w{ }@var{obj})
@end deftypemethod
@deftypemethod BigInteger {public double} doubleValue ()
@end deftypemethod
@deftypemethod BigInteger {public float} floatValue ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} abs ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} negate ()
@end deftypemethod
@deftypemethod BigInteger {public int} bitLength ()
Calculates ceiling(log2(this < 0 ? -this : this+1))
See Common Lisp: the Language, 2nd ed, p. 361.
@end deftypemethod
@deftypemethod BigInteger {public byte} toByteArray ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} and (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "and" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} or (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "(inclusive) or" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} xor (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "exclusive or" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} not ()
Return the logical (bit-wise) negation of a BigInteger.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} andNot (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} clearBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} setBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public boolean} testBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} flipBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public int} getLowestSetBit ()
@end deftypemethod
@deftypemethod BigInteger {public int} bitCount ()
Count one bits in a BigInteger.
If argument is negative, count zero bits instead.
@end deftypemethod