Uses of Class
org.jsoup.nodes.Range
-
Packages that use Range Package Description org.jsoup.nodes HTML document structure nodes. -
-
Uses of Range in org.jsoup.nodes
Fields in org.jsoup.nodes declared as Range Modifier and Type Field Description private Range
Range.AttributeRange. nameRange
(package private) static Range
Range. Untracked
An untracked source range.private Range
Range.AttributeRange. valueRange
Methods in org.jsoup.nodes that return Range Modifier and Type Method Description Range
Element. endSourceRange()
Get the source range (start and end positions) of the end (closing) tag for this Element.Range
Range.AttributeRange. nameRange()
Get the source range for the attribute's name.(package private) static Range
Range. of(Node node, boolean start)
Retrieves the source range for a given Node.Range
Node. sourceRange()
Get the source range (start and end positions) in the original input source from which this node was parsed.Range
Range.AttributeRange. valueRange()
Get the source range for the attribute's value.Constructors in org.jsoup.nodes with parameters of type Range Constructor Description AttributeRange(Range nameRange, Range valueRange)
Creates a new AttributeRange.
-