BigDecimal.ROUND_FLOOR has the following syntax.
public static final int ROUND_FLOOR
In the following code shows how to use BigDecimal.ROUND_FLOOR field.
import java.math.BigDecimal; /* w ww.j a v a 2s . co m*/ public class Main { public static void main(String[] args) { BigDecimal bg1 = new BigDecimal("40"); BigDecimal bg2 = new BigDecimal("3"); BigDecimal bg3 = bg1.divide(bg2, BigDecimal.ROUND_FLOOR); System.out.println(bg3); } }
The code above generates the following result.