Generated by
JDiff

Class com.itextpdf.styledxmlparser.jsoup.select.Elements

Added Methods
List  comments() Get Comment nodes that are direct child nodes of the selected elements.
List  dataNodes() Get DataNode nodes that are direct child nodes of the selected elements.
List  eachAttr( String) Get the attribute value for each of the matched elements.
List  eachText() Get the text content of each of the matched elements.
Elements  filter( NodeFilter) Perform a depth-first filtering on each of the selected elements.
Elements  next() Get the immediate next element sibling of each element in this list.
Elements  next( String) Get the immediate next element sibling of each element in this list, filtered by the query.
Elements  nextAll() Get each of the following element siblings of each element in this list.
Elements  nextAll( String) Get each of the following element siblings of each element in this list, that match the query.
Elements  prev() Get the immediate previous element sibling of each element in this list.
Elements  prev( String) Get the immediate previous element sibling of each element in this list, filtered by the query.
Elements  prevAll() Get each of the previous element siblings of each element in this list.
Elements  prevAll( String) Get each of the previous element siblings of each element in this list, that match the query.
List  textNodes() Get TextNode nodes that are direct child nodes of the selected elements.
 

Changed Methods
Elements  addClass( String) Documentation changed from old to new.
Add the class name to every matched element's {@code class} attribute.
Object  clone() Documentation changed from old to new.
Creates a deep copy of these elements.
boolean  hasAttr( String) Documentation changed from old to new.
Checks if any of the matched elements have this attribute defined.
boolean  hasClass( String) Documentation changed from old to new.
Determine if any of the matched elements have this class name set in their {@code class} attribute.
boolean  hasText() Documentation changed from old to new.
Test if any matched Element has any text content, that is not just whitespace.
Elements  remove() Documentation changed from old to new.
Remove each matched element from the DOM.
Elements  removeClass( String) Documentation changed from old to new.
Remove the class name from every matched element's {@code class} attribute, if present.
Elements  tagName( String) Documentation changed from old to new.
Update (rename) the tag name of each matched element.
String  text() Documentation changed from old to new.
Get the combined text of all the matched elements.
Elements  toggleClass( String) Documentation changed from old to new.
Toggle the class name on every matched element's {@code class} attribute.
Elements  unwrap() Documentation changed from old to new.
Removes the matched elements from the DOM, and moves their children up into their parents.
Elements  wrap( String) Documentation changed from old to new.
Wrap the supplied HTML around each matched elements.
String  attr( String) Documentation changed from old to new.
Get an attribute value from the first matched element that has the attribute.