Here you can find the source of scaleCurrency(BigDecimal amount)
protected static BigDecimal scaleCurrency(BigDecimal amount)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { protected static BigDecimal scaleCurrency(BigDecimal amount) { return amount.setScale(2, BigDecimal.ROUND_HALF_UP); }/*from w w w. ja va2 s. co m*/ }