BigDecimal.max(BigDecimal val) has the following syntax.
public BigDecimal max(BigDecimal val)
In the following code shows how to use BigDecimal.max(BigDecimal val) method.
import java.math.BigDecimal; /* w w w.j av a 2 s. c o m*/ public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal("123"); BigDecimal bg2 = new BigDecimal("456"); // assign the max value of bg1, bg2 to bg3 BigDecimal bg3 = bg1.max(bg2); System.out.println(bg3); } }
The code above generates the following result.