Uses of Class
net.htmlparser.jericho.Element
Packages that use Element
-
Uses of Element in net.htmlparser.jericho
Methods in net.htmlparser.jericho that return ElementModifier and TypeMethodDescriptionEndTag.getElement()
Returns the element that is ended by this end tag.final Element
FormControl.getElement()
Returns the element representing this form control in the source document.StartTag.getElement()
Returns the element that is started by this start tag.abstract Element
Tag.getElement()
Returns the element that is started or ended by this tag.Source.getElementById
(String id) Returns theElement
with the specifiedid
attribute value.Source.getEnclosingElement
(int pos) Source.getEnclosingElement
(int pos, String name) final Element
Segment.getFirstElement()
final Element
Segment.getFirstElement
(String name) final Element
Segment.getFirstElement
(String attributeName, String value, boolean valueCaseSensitive) final Element
Segment.getFirstElement
(String attributeName, Pattern valueRegexPattern) final Element
Segment.getFirstElementByClass
(String className) Source.getNextElement
(int pos) Returns theElement
beginning at or immediately following the specified position in the source document.Source.getNextElement
(int pos, String name) Source.getNextElement
(int pos, String attributeName, String value, boolean valueCaseSensitive) Returns theElement
with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.Source.getNextElement
(int pos, String attributeName, Pattern valueRegexPattern) Returns theElement
with the specified attribute name and value pattern beginning at or immediately following the specified position in the source document.Source.getNextElementByClass
(int pos, String className) Returns theElement
with the specified class beginning at or immediately following the specified position in the source document.Element.getParentElement()
Returns the parent of this element in the document element hierarchy.Methods in net.htmlparser.jericho that return types with arguments of type ElementModifier and TypeMethodDescriptionSegment.getAllElements()
Segment.getAllElements
(String name) Segment.getAllElements
(String attributeName, String value, boolean valueCaseSensitive) Segment.getAllElements
(String attributeName, Pattern valueRegexPattern) Segment.getAllElements
(StartTagType startTagType) Source.getAllElements()
Returns a list of all elements in this source document.Segment.getAllElementsByClass
(String className) Element.getChildElements()
Returns a list of the immediate children of this element in the document element hierarchy.Segment.getChildElements()
Returns a list of the immediate children of this segment in the document element hierarchy.Source.getChildElements()
Returns a list of the top-level elements in the document element hierarchy.FormControl.getOptionElementIterator()