Android Utililty Methods BigDecimal Point Move

List of utility methods to do BigDecimal Point Move

Description

The list of methods to do BigDecimal Point Move are organized into topic(s).

Method

BigDecimalmoveLeft(String value, int move)
move Left
BigDecimal bd = new BigDecimal(value);
return bd.movePointLeft(move);
BigDecimalmoveRight(String value, int move)
move Right
BigDecimal bd = new BigDecimal(value);
return bd.movePointRight(move);