Package adams.flow.source.newlist
-
Class Summary Class Description AbstractListGenerator Ancestor for list generators.FixedList Simply outputs the supplied list elements.ForLoop Emulates the following for-loop for integer IDs:
- positive step size:
for (int i = lower; i <= upper; i += step)
- negative step size:
for (int i = upper; i >= lower; i += step)
Wrapper Wraps the list items produced by the specified generator with user-supplied prefix and suffix.