org.apache.camel.dataformat.bindy.format
Class BigDecimalFormat

java.lang.Object
  extended by org.apache.camel.dataformat.bindy.format.AbstractNumberFormat<BigDecimal>
      extended by org.apache.camel.dataformat.bindy.format.BigDecimalFormat
All Implemented Interfaces:
Format<BigDecimal>

public class BigDecimalFormat
extends AbstractNumberFormat<BigDecimal>


Constructor Summary
BigDecimalFormat(boolean impliedDecimalPosition, int precision, Locale locale)
           
 
Method Summary
 String format(BigDecimal object)
          Formats the object into a String
 BigDecimal parse(String string)
          Parses a String into an object
 
Methods inherited from class org.apache.camel.dataformat.bindy.format.AbstractNumberFormat
getFormat, getMultiplier, getPrecision, hasImpliedDecimalPosition
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BigDecimalFormat

public BigDecimalFormat(boolean impliedDecimalPosition,
                        int precision,
                        Locale locale)
Method Detail

format

public String format(BigDecimal object)
              throws Exception
Description copied from interface: Format
Formats the object into a String

Parameters:
object - the object
Returns:
formatted as a String
Throws:
Exception - can be thrown

parse

public BigDecimal parse(String string)
                 throws Exception
Description copied from interface: Format
Parses a String into an object

Parameters:
string - the string
Returns:
T the object
Throws:
Exception - can be thrown


Apache Camel