Java BigDecimal moveRight(BigDecimal value, int offset)

Here you can find the source of moveRight(BigDecimal value, int offset)

Description

move Right

License

Apache License

Declaration

public static int moveRight(BigDecimal value, int offset) 

Method Source Code

//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();
    }
}

Related

  1. median(final BigDecimal[] bigDecimalNumbers)
  2. milliToCent(BigDecimal val)
  3. milliToDollar(BigDecimal val)
  4. mod(long res, BigDecimal value)
  5. movePoint(final BigDecimal v1, final int shift)
  6. nullSafeCompare(BigDecimal pPremierNombre, BigDecimal pSecondNombre)
  7. numberToWordsWithDecimal(BigDecimal value)
  8. nvl(final BigDecimal bigDecimal)
  9. nvlZero(BigDecimal num)