List of utility methods to do BigDecimal Point Move
BigDecimal | moveLeft(String value, int move) move Left BigDecimal bd = new BigDecimal(value); return bd.movePointLeft(move); |
BigDecimal | moveRight(String value, int move) move Right BigDecimal bd = new BigDecimal(value); return bd.movePointRight(move); |