this.name=name; this.headers=headers; pos=0; size = headers.size(); findNext();
next=null; for( ; pos< size; pos++ ) { MessageBytes n1=headers.getName( pos ); if( n1.equalsIgnoreCase( name )) { next=headers.getValue( pos ); break; } } pos++;
return next!=null;
MessageBytes current=next; findNext(); return current.toString();