nl.bstoi.poiparser.api.strategy.converter
Interface Converter<T>

Type Parameters:
T -
All Known Implementing Classes:
BigDecimalConvertor, BooleanConverter, CalendarConverter, DateConverter, IntegerConvertor, LongConverter, ShortConverter, StringConverter

public interface Converter<T>

Convert a Cell from/to a field.

Author:
Hylke Stapersma

Method Summary
 T readCell(org.apache.poi.ss.usermodel.Cell cell)
          Read a Cell and convert to
 void writeCell(org.apache.poi.ss.usermodel.Cell cell, T value)
          Write a value to cell
 

Method Detail

readCell

T readCell(org.apache.poi.ss.usermodel.Cell cell)
Read a Cell and convert to

Parameters:
cell -
Returns:

writeCell

void writeCell(org.apache.poi.ss.usermodel.Cell cell,
               T value)
Write a value to cell

Parameters:
cell -
value -


Copyright © 2011 BSTOI.NL. All Rights Reserved.