1 16 package org.apache.xerces.xs.datatypes; 17 18 import java.math.BigDecimal ; 19 import java.math.BigInteger ; 20 21 28 public interface XSDecimal { 29 30 33 public BigDecimal getBigDecimal(); 34 35 39 public BigInteger getBigInteger() throws NumberFormatException ; 40 41 45 public long getLong() throws NumberFormatException ; 46 47 51 public int getInt() throws NumberFormatException ; 52 53 57 public short getShort() throws NumberFormatException ; 58 59 63 public byte getByte() throws NumberFormatException ; 64 } 65 | Popular Tags |