org.supercsv.ext.cellprocessor.ParseShort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of super-csv-annotation Show documentation
Show all versions of super-csv-annotation Show documentation
CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。
/*
* ParseShort.java
* created in 2013/03/06
*
* (C) Copyright 2003-2013 GreenDay Project. All rights reserved.
*/
package org.supercsv.ext.cellprocessor;
import org.supercsv.cellprocessor.CellProcessorAdaptor;
import org.supercsv.cellprocessor.ift.LongCellProcessor;
import org.supercsv.cellprocessor.ift.StringCellProcessor;
import org.supercsv.exception.SuperCsvCellProcessorException;
import org.supercsv.util.CsvContext;
/**
*
*
* @author T.TSUCHIE
*
*/
public class ParseShort extends CellProcessorAdaptor implements StringCellProcessor {
public ParseShort() {
super();
}
public ParseShort(final LongCellProcessor next) {
super(next);
}
@Override
public Object execute(final Object value, final CsvContext context) {
validateInputNotNull(value, context);
final Short result;
if( value instanceof Short ) {
result = (Short) value;
} else if( value instanceof String ) {
try {
result = Short.valueOf((String) value);
} catch(final NumberFormatException e) {
throw new SuperCsvCellProcessorException(String.format("'%s' could not be parsed as an Short", value),
context, this, e);
}
} else {
final String actualClassName = value.getClass().getName();
throw new SuperCsvCellProcessorException(String.format(
"the input value should be of type Short or String but is of type %s", actualClassName), context, this);
}
return next.execute(result, context);
}
}