1 23 24 29 30 package com.sun.jdo.spi.persistence.support.sqlstore.utility; 31 32 import java.math.BigDecimal ; 33 import java.math.BigInteger ; 34 35 40 public interface NumericConverter { 41 44 static final int DEFAULT_POLICY = 0; 45 46 51 BigDecimal toBigDecimal(BigInteger bInteger); 52 53 58 BigDecimal toBigDecimal(Double d); 59 60 65 BigDecimal toBigDecimal(Float f); 66 67 72 BigDecimal toBigDecimal(Number n); 73 74 79 BigInteger toBigInteger(BigDecimal bDecimal); 80 81 86 BigInteger toBigInteger(Double d); 87 88 93 BigInteger toBigInteger(Float f); 94 95 100 BigInteger toBigInteger(Number n); 101 } 102 | Popular Tags |