Package | Description |
---|---|
com.jaunt |
Jaunt [website] is a web-scraping & automation library that provides a lightweight HTTP useragent (headless browser), including JSON parser.
|
com.jaunt.util |
Modifier and Type | Method and Description |
---|---|
Comment |
Element.findFirst(short commentType)
Searches all children/descendants and returns the first Comment matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
|
Comment |
Element.getComment(int n)
Retrieves the nth child Comment (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
|
Comment |
Element.getFirst(short commentType)
Searches only children (not all descendants) and returns the first Comment matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
|
Modifier and Type | Method and Description |
---|---|
List<Comment> |
Element.findEach(short commentType)
Searches all children/descendants and returns all Comments matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
|
List<Comment> |
Element.getEach(short commentType)
Searches only children (not all descendants) and returns all Comments matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
|
Modifier and Type | Method and Description |
---|---|
boolean |
FilterCallback.childCommentAllowed(Element parent,
Comment comment)
Deprecated.
whether the specified child comment for the specified parent element is allowed through the filter.
|
boolean |
Filter.childCommentAllowed(Element parent,
Comment comment)
Deprecated.
satisfies FilerCallback interface.
|