Numbering in the figure | Name | Description | Remarks |
---|---|---|---|
(1) | Input source | Schema of input data, script variable, component variable are shown. |
|
(2) | Template area | Describe Velocity template. Syntax of reference of Variable/Input data and loop/conditional branch is changed to color and shown. |
|
(3) | Tool palette | Tool related to "Add input data" and "Insert loop" "Insert conditional branch " is shown. It is possible to start each tool by dragging&dropping to template area. |
Notation | Description |
---|---|
$component.<Processing component name> | Returns the object corresponding to the result data of processing component in <Processing component name>. |
Method Name | Arguments | Return type | Description |
---|---|---|---|
rows | None | Collection | Collection for object to access to each row. |
Method Name | Arguments | Return type | Description |
---|---|---|---|
getColumnValue | int | Column | Get the column object with the specified index. |
getColumnCount | None | int | Returns the number of columns in the row. |
getColumnData | None | Column[] | Returns an array of column objects included in row object. |
Method Name | Arguments | Return type | Description |
---|---|---|---|
getData | None | Object | Return column input value unchanged. |
getStringValue | None | String | Value as String type |
getIntegerValue | None | Integer | Value as Integer type |
getLongValue | None | Long | Value as Long type |
getShortValue | None | Short | Value as Short type |
getFloatValue | None | Float | Value as Float type |
getDoubleValue | None | Double | Value as Double type |
getBigDecimalValue | None | BigDecimal | Value as BigDecimal type |
getBooleanValue | None | Boolean | Value as Boolean type |
Type | Notation | Description |
---|---|---|
Script variable | $script.<Script variable name> | Returns the string representation of the value dereferenced by the <Script variable name>. |
$start.<XML script input variable name> | Return XML data of the script variable shown as <XML script input variable name>.
![]() |
|
$component.<XML script input variable name> | ||
Component variable | $property.<Processing component name>.<Component variable name> | Return string representation of component number indicated by <Processing component name> and <Component variable name>. |
Characters | Description |
---|---|
space | |
! | Exclamation mark |
? | Question mark |
\ | Backslash |
$ | Dollar sign |
@ | at symbol |
% | percent symbol |
& | ampersand |
# | hash mark |
* | asterisk |
^ | hut |
~ | tilde |
, | comma |
. | period |
+ | plus sign |
/ | forward slash |
| | vertical bar |
: | colon |
; | semi colon |
< | less than sign |
= | equal sing |
> | greater than sing |
- | hyphen |
' | single quote |
" | double quote |
` | back quote |
( | parentheses(left) |
) | parentheses(right) |
{ | braces(left) |
} | braces(right) |
[ | bracket(left) |
] | bracket(right) |
「 | double-byte parenthesis(left) |
」 | double-byte parenthesis(right) |
・ | double-byte bullet point |