Package-level declarations
Types
The attributes of an Element.
A <!DOCTYPE> node. Create a new doctype element.
A HTML Form Element provides ready access to the form fields/controls that are associated with it. It also allows a form to easily be submitted. Create a new, standalone form element.
The base, abstract Node model. {@link Element}, {@link Document}, {@link Comment}, {@link TextNode}, et al., are instances of Node.
Iterate through a Node and its tree of descendants, in document order, and returns nodes of the specified type. This iterator supports structural changes to the tree during the traversal, such as Node.remove, Node.replaceWith, Node.wrap, etc.
A Range object tracks the character positions in the original input source where a Node starts or ends. If you want to track these positions, tracking must be enabled in the Parser with com.fleeksoft.ksoup.parser.Parser.setTrackPosition.
An XML Declaration.