Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The string-to-list tag appends the inlined string value in the specified List.

Attribute NameRequired?Description
stringYThe string value to append to the list.
list-nameYThe name of the list in the method environment.
arg-list-nameNThe name (key) of a list to use for argument values for any place holders in the string. Formatting is done with the Java MessageFormat class. Place holders, for example, are denoted as follows: {0}, {1}, etc and can appear anywhere in the string.

to-string

The to-string tag converts the Object in the specified field to a String, putting the string in the same field.

Attribute NameRequired?Description
map-nameNThe name of the map in the method environment. If not specified the field-name will be used to get the field from the method environment.
field-nameYThe name (key) of the map field to use.

clear-field

The clear-field tag clears/removes the specified field.

Attribute NameRequired?Description
map-nameNThe name of the map in the method environment. If not specified the field-name will be used to get the field from the method environment.
field-nameYThe name (key) of the map field to use.

iterate

The operations contained by the iterate tag will be executed for each of the entries in the list, and will make the current entry available in the method environment by the entry-name specified. This tag can contain any of the simple-method operations, including the conditional/if operations.

Attribute NameRequired?Description
entry-nameYThe name of the method environment field that will contain each entry as we iterate through the list.
list-nameYThe name of the method environment field that contains the list to iterate over.
Sub-Element NameHow ManyDescription
Any Operation0 to manyAny simple-method operation can be nested under the iterate tag.

first-from-list

The first-from-list tag will get the first entry from the given list and put it in the environment field with the given entry-name.

Attribute NameRequired?Description
entry-nameYThe name of the method environment field that will contain the first entry in the list.
list-nameYThe name of the method environment field that contains the list to get the first entry from.