Package | Description |
---|---|
org.apache.taglibs.standard.tag.common.core |
Modifier and Type | Class and Description |
---|---|
private static class |
ForEachSupport.ArrayIterator
Iterator over an array, including arrays of primitive types.
|
private static class |
ForEachSupport.DeferredIterator |
private static class |
ForEachSupport.EnumerationIterator
Iterator over an Enumeration.
|
private static class |
ForEachSupport.IndexedDeferredIterator |
private static class |
ForEachSupport.IteratedDeferredIterator |
private static class |
ForEachSupport.ToEndIterator
Iterator that simply counts up to 'end.'
Unlike the previous implementation this does not attempt to pre-allocate an array
containing all values from 0 to 'end' as that can result in excessive memory allocation
for large values of 'end.'
LoopTagSupport calls next() 'begin' times in order to discard the initial values,
In order to maintain this contract, this implementation always starts at 0.
|