public class BindyCsvFactory extends BindyAbstractFactory implements BindyFactory
annotatedLinkFields, crlf, modelClassNames, models
Constructor and Description |
---|
BindyCsvFactory(org.apache.camel.spi.PackageScanClassResolver resolver,
Class<?> type) |
BindyCsvFactory(org.apache.camel.spi.PackageScanClassResolver resolver,
String... packageNames) |
Modifier and Type | Method and Description |
---|---|
void |
bind(List<String> tokens,
Map<String,Object> model,
int line)
The bind allow to read the content of a record (expressed as a
List
|
String |
generateHeader()
Generate for the first line the headers of the columns
|
boolean |
getAutospanLine()
If last record is to span the rest of the line
|
boolean |
getGenerateHeaderColumnNames()
Flag indicating if the first line of the CSV must be skipped
|
int |
getMaxpos() |
String |
getQuote() |
String |
getSeparator()
Find the separator used to delimit the CSV fields
|
boolean |
getSkipFirstLine()
Find the separator used to delimit the CSV fields
|
void |
initAnnotatedFields()
Find fields annotated in each class of the model
|
void |
initCsvModel()
method uses to initialize the model representing the classes who will
bind the data.
|
boolean |
isMessageOrdered()
Flag indicating if the message must be ordered
|
String |
unbind(Map<String,Object> model)
The unbind is used to transform the content of the classes model objects
into a string.
|
factory, formatString, generateKey, getCarriageReturn, getDefaultValueForPrimitive, getLocale, initModel, link, setLocale, supportsModel
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
initModel
public BindyCsvFactory(org.apache.camel.spi.PackageScanClassResolver resolver, String... packageNames) throws Exception
Exception
public void initCsvModel() throws Exception
Exception
public void initAnnotatedFields()
BindyAbstractFactory
initAnnotatedFields
in class BindyAbstractFactory
public void bind(List<String> tokens, Map<String,Object> model, int line) throws Exception
BindyFactory
bind
in interface BindyFactory
bind
in class BindyAbstractFactory
tokens
- Listmodel
- Mapline
- is the position of the record into the fileException
- can be thrownpublic String unbind(Map<String,Object> model) throws Exception
BindyFactory
unbind
in interface BindyFactory
unbind
in class BindyAbstractFactory
model
- MapException
- can be thrownpublic String generateHeader()
public String getSeparator()
public boolean getGenerateHeaderColumnNames()
public boolean getSkipFirstLine()
public boolean getAutospanLine()
public boolean isMessageOrdered()
public String getQuote()
public int getMaxpos()
Apache Camel