Java BigDecimal to convertFeetToInches(BigDecimal feet)

Here you can find the source of convertFeetToInches(BigDecimal feet)

Description

convert Feet To Inches

License

Apache License

Declaration

public static BigDecimal convertFeetToInches(BigDecimal feet) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.math.BigDecimal;

public class Main {
    public static BigDecimal convertFeetToInches(BigDecimal feet) {
        return feet.multiply(BigDecimal.valueOf(12));
    }/*w  ww . j ava 2 s. c  o  m*/
}

Related

  1. convertBigDecimalTodouble(BigDecimal bigDecimalVal)
  2. convertBigDecimalToSQLBigNum(BigDecimal bd, int targetLength, int targetScale)
  3. convertBigDecimalToString(BigDecimal bigValue)
  4. convertDoubleToBigDecimal(Double value)
  5. convertDoubleToBigDecimal(final Double score, final int decimalPlaces)
  6. convertHoursToMillis(BigDecimal hours)
  7. convertNullToBigDecimal(Object orgStr)
  8. convertRadiansToDegrees(BigDecimal radians)
  9. convertRating(BigDecimal rating)