protected abstract java.lang.Object |
AbstractBeanField.convert(java.lang.String value) |
Method for converting from a string to the proper datatype of the
destination field.
|
protected java.lang.Object |
BeanFieldSingleValue.convert(java.lang.String value) |
Passes the string to be converted to the converter.
|
protected java.lang.Object |
BeanFieldSplit.convert(java.lang.String value) |
This method manages the collection being created as well as splitting the
data.
|
java.lang.Object |
CsvConverter.convertToRead(java.lang.String value) |
Method for converting from a string to the proper data type of the
destination field.
|
T |
AbstractMappingStrategy.populateNewBean(java.lang.String[] line) |
|
T |
MappingStrategy.populateNewBean(java.lang.String[] line) |
Takes a line of input from a CSV file and creates a bean out of it.
|
void |
AbstractBeanField.setFieldValue(java.lang.Object bean,
java.lang.String value,
java.lang.String header) |
|
protected void |
AbstractMappingStrategy.setFieldValue(java.util.Map<java.lang.Class<?>,java.lang.Object> beanTree,
java.lang.String value,
int column) |
Populates the field corresponding to the column position indicated of the
bean passed in according to the rules of the mapping strategy.
|
void |
BeanField.setFieldValue(java.lang.Object bean,
java.lang.String value,
java.lang.String header) |
Populates the selected field of the bean.
|
boolean |
BeanVerifier.verifyBean(T bean) |
Verifies and optionally filters the bean that has been created.
|