|
|
|
...
Parameter name |
type |
Info |
pos |
int |
mandatory - digit number starting from 1 to ... |
pattern |
string |
optional - default value = "" - will be used to format Decimal, Date, ... |
length |
int |
optional - represents the length of the field for fixed length format |
precision |
int |
optional - represents the precision to be used when the Decimal number will be formatted/parsed |
pattern |
string |
optional - default value = "" - is used by the Java formatter (SimpleDateFormat by example) to format/validate data. If using pattern, then setting locale on bindy data format is recommended. Either set to a known locale such as "us" or use "default" to use platform default locale. Notice that "default" requires Camel 2.14/2.13.3/2.12512.5. |
position |
int |
optional - must be used when the position of the field in the CSV generated must be different compare to pos |
required |
boolean |
optional - default value = "false" |
trim |
boolean |
optional - default value = "false" |
defaultValue |
string |
Camel 2.10: optional - default value = "" - defines the field's default value when the respective CSV field is empty/not available |
impliedDecimalSeparator |
boolean |
Camel 2.11: optional - default value = "false" - Indicates if there is a decimal point implied at a specified location |
lengthPos |
int |
Camel 2.11: optional - can be used to identify a data field in a fixed-length record that defines the fixed length for this field |
delimiter |
string |
Camel 2.11: optional - can be used to demarcate the end of a variable-length field within a fixed-length record |
...
|
|
|