Interface and Description |
---|
org.jsoup.helper.Consumer
Use
Consumer instead. This interface will be removed in the next release. If you
are targeting Android, see how to enable
desugaring. |
Method and Description |
---|
org.jsoup.nodes.Element.forEach(Consumer<? super Element>)
Use
Element.forEach(Consumer) instead. |
org.jsoup.nodes.Node.forEachNode(Consumer<? super Node>)
Use
Node.forEachNode(Consumer) instead. |
org.jsoup.nodes.Document.normalise()
as normalization occurs during the HTML parse, this method is no longer useful and will be retired
in the next release.
|