Element |
EndTag.getElement() |
Returns the element that is ended by this end tag.
|
Element |
FormControl.getElement() |
Returns the element representing this form control in the source document.
|
Element |
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.
|
Element |
Source.getElementById(java.lang.String id) |
Returns the Element with the specified id attribute value.
|
Element |
Source.getEnclosingElement(int pos) |
|
Element |
Source.getEnclosingElement(int pos,
java.lang.String name) |
|
Element |
Segment.getFirstElement() |
|
Element |
Segment.getFirstElement(java.lang.String name) |
|
Element |
Segment.getFirstElement(java.lang.String attributeName,
java.lang.String value,
boolean valueCaseSensitive) |
Returns the first Element with the specified attribute name/value pair enclosed by this segment.
|
Element |
Segment.getFirstElement(java.lang.String attributeName,
java.util.regex.Pattern valueRegexPattern) |
Returns the first Element with the specified attribute name and value pattern that is enclosed by this segment.
|
Element |
Segment.getFirstElementByClass(java.lang.String className) |
Returns the first Element with the specified class that is enclosed by this segment.
|
Element |
Source.getNextElement(int pos) |
Returns the Element beginning at or immediately following the specified position in the source document.
|
Element |
Source.getNextElement(int pos,
java.lang.String name) |
Returns the normal Element with the specified name beginning at or immediately following the specified position in the source document.
|
Element |
Source.getNextElement(int pos,
java.lang.String attributeName,
java.lang.String value,
boolean valueCaseSensitive) |
Returns the Element with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
|
Element |
Source.getNextElement(int pos,
java.lang.String attributeName,
java.util.regex.Pattern valueRegexPattern) |
Returns the Element with the specified attribute name and value pattern beginning at or immediately following the specified position in the source document.
|
Element |
Source.getNextElementByClass(int pos,
java.lang.String className) |
Returns the Element with the specified class beginning at or immediately following the specified position in the source document.
|
Element |
Element.getParentElement() |
Returns the parent of this element in the document element hierarchy.
|