Here you can find the source of moveRight(BigDecimal value, int offset)
public static int moveRight(BigDecimal value, int offset)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static int moveRight(BigDecimal value, int offset) { if (null == value) { return 0; }//from w ww .j av a 2 s. c om return value.movePointRight(offset).intValue(); } }