Here you can find the source of convertFeetToInches(BigDecimal feet)
public static BigDecimal convertFeetToInches(BigDecimal feet)
//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*/ }