
BigDecimal divide( BigDecimal num )
returns a BigDecimal object equal to the current
BigDecimal object divided by num. Throws an
ArithmeticException.
int compareTo( BigDecimal num )
returns 0 if the current BigDecimal object is equal
to num; -1 if the current BigDecimal object is less
than num; and 1 if the current BigDecimal object
is greater than num.
BorderLayout
Package: java.awt
Description: a layout manager that arranges user interface components
into five areas: NORTH, SOUTH, EAST, WEST, and CENTER. Each area
can hold, at most, one component.
Constructors
BorderLayout( )
creates a border layout with no gaps between components
BorderLayout( int hGap, int ...