Open Source Repository

Home /csv/supercsv-1.52 | Repository Home



org/supercsv/cellprocessor/ParseDouble.java
package org.supercsv.cellprocessor;

import org.supercsv.cellprocessor.ift.DoubleCellProcessor;
import org.supercsv.cellprocessor.ift.StringCellProcessor;
import org.supercsv.exception.NullInputException;
import org.supercsv.exception.SuperCSVException;
import org.supercsv.util.CSVContext;

/**
 * Convert a string to a double
 
 @author Kasper B. Graversen
 */
public class ParseDouble extends CellProcessorAdaptor  implements StringCellProcessor {

public ParseDouble() {
  super();
}

public ParseDouble(final DoubleCellProcessor next) {
  super(next);
}

/**
 * {@inheritDoc}
 */
@Override
public Object execute(final Object value, final CSVContext contextthrows SuperCSVException {
  ifvalue == null ) { throw new NullInputException("Input cannot be null on line " + context.lineNumber + " at column " + context.columnNumber, context, this)}
  
  final Double result;
  ifvalue instanceof Double ) {
    result = (Doublevalue;
  else ifvalue instanceof String ) {
    try {
      result = new Double((Stringvalue);
    }
    catch(final NumberFormatException e) {
      throw new SuperCSVException("Parser error", context, this, e);
    }
  else {
    throw new SuperCSVException("Can't convert \"" + value
      "\" to double. Input is not of type Double nor type String, but of type " + value.getClass().getName(),
      context, this);
  }
  
  return next.execute(result, context);
}
}