Current Page:
NeXtMidas Training
Macros - Part 1 (Basics)
Loops and Control Structures
Loops
FOREACH
|
|
Iteration |
The generic IN and IN/V functions allow you to iterate over
a large number of Java objects.
- java.util.Map (includes Table, Hashtable, HashMap, ...)
- java.util.Collection (includes List, Vector, LinkedList, ...)
- java.util.Iterator (any implementation of the Iterator interface)
- java.util.Enumeration (any implementation of the Enumeration interface)
- java.lang.Object[] (any generic Java array)
- nxm.sys.lib.Data (the values in a Data object via Data.toVector())
|
|
|
|