org.apache.tomcat.util.http
class: ValuesEnumerator [javadoc |
source]
java.lang.Object
org.apache.tomcat.util.http.ValuesEnumerator
All Implemented Interfaces:
Enumeration
Enumerate the values for a (possibly ) multiple
value element.
Field Summary |
---|
int | pos | |
int | size | |
MessageBytes | next | |
MimeHeaders | headers | |
String | name | |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.tomcat.util.http.ValuesEnumerator Detail: |
public boolean hasMoreElements() {
return next!=null;
}
|
public Object nextElement() {
MessageBytes current=next;
findNext();
return current.toString();
}
|