Attributes |
Name | Required | Request-time | Type | Description |
begin | false | true | int | Iteration begins at the token located at the specified index. First token has index 0. |
delims | true | true | java.lang.String | The set of delimiters (the characters that separate the tokens in the string). |
end | false | true | int | Iteration ends at the token located at the specified index (inclusive). |
items | true | true | javax.el.ValueExpression
(must evaluate to java.lang.Object )
| String of tokens to iterate over. |
step | false | true | int | Iteration will only process every step tokens of the string, starting with the first one. |
var | false | false | java.lang.String | Name of the exported scoped variable for the current item of the iteration. This scoped variable has nested visibility. |
varStatus | false | false | java.lang.String | 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. |