-
Classes Class Description org.jsoup.nodes.BooleanAttribute just use null values (vs empty string) for booleans.
-
Methods Method Description org.jsoup.nodes.Attribute.isBooleanAttribute() org.jsoup.nodes.Entities.getCharacterByName(String) does not support characters outside the BMP or multiple character namesorg.jsoup.nodes.TextNode.createFromEncoded(String, String) useTextNode.createFromEncoded(String)
instead, as LeafNodes don't carry base URIs.org.jsoup.parser.Parser.parseBodyFragmentRelaxed(String, String) org.jsoup.parser.Tag.canContainBlock() No longer used, and no different result than {Tag.isBlock()
}org.jsoup.parser.Tag.isData() use data nodes insteadorg.jsoup.select.NodeTraversor.traverse(Node) Just use the staticNodeTraversor.filter(NodeFilter, Node)
method.
-
Constructors Constructor Description org.jsoup.nodes.Comment(String, String) org.jsoup.nodes.DataNode(String, String) useDataNode(String)
insteadorg.jsoup.nodes.DocumentType(String, String, String, String) org.jsoup.nodes.TextNode(String, String) useTextNode(String)
org.jsoup.nodes.XmlDeclaration(String, String, boolean) org.jsoup.select.NodeTraversor(NodeVisitor) Just use the staticNodeTraversor.filter(NodeFilter, Node)
method.