Package de.xima.fc.workflow.itemlist
Class FcForEachLoopItemListFieldValues
- java.lang.Object
-
- de.xima.fc.workflow.itemlist.FcForEachLoopItemListFieldValues
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ItemList<List<String>>evaluate(INodeExecutionParams<FcForEachLoopProps> params, ListItemSourcePropsFieldValues sourceProps)Resolves an item list for the for-each loop of typeFIELD_VALUES.ItemDataextractData(List<String> item, int index)Lazily extracts the additional required data for an item in this list.@NotNull Iterator<List<String>>iterator()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
extractData
public ItemData extractData(List<String> item, int index)
Description copied from interface:ItemListLazily extracts the additional required data for an item in this list.- Specified by:
extractDatain interfaceItemList<List<String>>- Parameters:
item- An item as returned byIterable.iterator().index- 0-based index of the item returned byIterable.iterator().- Returns:
- The extracted item data for the given item of this list.
-
evaluate
public static ItemList<List<String>> evaluate(INodeExecutionParams<FcForEachLoopProps> params, ListItemSourcePropsFieldValues sourceProps)
Resolves an item list for the for-each loop of typeFIELD_VALUES.- Parameters:
params- Parameters provided by the workflow engine.sourceProps- Configured properties.- Returns:
- An item list with all resolved form field repetition items.
-
-