Attributes |
items |
String of tokens to iterate over.
|
|
Required:
true |
Request-time:
true |
Type:
java.lang.String |
|
delims |
The set of delimiters (the characters that
separate the tokens in the string).
|
|
Required:
true |
Request-time:
true |
Type:
java.lang.String |
|
begin |
Iteration begins at the token located at the
specified index. First token has index 0.
|
|
Required:
false |
Request-time:
true |
Type:
int |
|
end |
Iteration ends at the token located at the
specified index (inclusive).
|
|
Required:
false |
Request-time:
true |
Type:
int |
|
step |
Iteration will only process every step tokens
of the string, starting with the first one.
|
|
Required:
false |
Request-time:
true |
Type:
int |
|
var |
Name of the exported scoped variable for the
current item of the iteration. This scoped
variable has nested visibility.
|
|
Required:
false |
Request-time:
false |
Type:
java.lang.String |
|
varStatus |
Name of the exported scoped variable for the
status of the iteration. Object exported is of
type
javax.servlet.jsp.jstl.core.LoopTag
Status. This scoped variable has nested
visibility.
|
|
Required:
false |
Request-time:
false |
Type:
java.lang.String |
|