Uses of Class
net.htmlparser.jericho.Element

Uses of Element in net.htmlparser.jericho
 

Methods in net.htmlparser.jericho that return Element
abstract  Element Tag.getElement()
          Returns the element that is started or ended by this tag.
 Element StartTag.getElement()
          Returns the element that is started by this start tag.
 Element FormControl.getElement()
          Returns the element representing this form control in the source document.
 Element EndTag.getElement()
          Returns the element that is ended by this end tag.
 Element Source.getElementById(java.lang.String id)
          Returns the Element with the specified id attribute value.
 Element Source.getEnclosingElement(int pos)
          Returns the most nested normal Element that encloses the specified position in the source document.
 Element Source.getEnclosingElement(int pos, java.lang.String name)
          Returns the most nested normal Element with the specified name that encloses the specified position in the source document.
 Element Segment.getFirstElement()
          Returns the first Element enclosed by this segment.
 Element Segment.getFirstElement(java.lang.String name)
          Returns the first normal Element with the specified name 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.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.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.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.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.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.
 

Methods in net.htmlparser.jericho that return types with arguments of type Element
 java.util.List<Element> Source.getAllElements()
          Returns a list of all elements in this source document.
 java.util.List<Element> Segment.getAllElements()
          Returns a list of all Element objects that are enclosed by this segment.
 java.util.List<Element> Segment.getAllElements(StartTagType startTagType)
          Returns a list of all Element objects with start tags of the specified type that are enclosed by this segment.
 java.util.List<Element> Segment.getAllElements(java.lang.String name)
          Returns a list of all Element objects with the specified name that are enclosed by this segment.
 java.util.List<Element> Segment.getAllElements(java.lang.String attributeName, java.util.regex.Pattern valueRegexPattern)
          Returns a list of all Element objects with the specified attribute name and value pattern that are enclosed by this segment.
 java.util.List<Element> Segment.getAllElements(java.lang.String attributeName, java.lang.String value, boolean valueCaseSensitive)
          Returns a list of all Element objects with the specified attribute name/value pair that are enclosed by this segment.
 java.util.List<Element> Segment.getAllElementsByClass(java.lang.String className)
          Returns a list of all Element objects with the specified class that are enclosed by this segment.
 java.util.List<Element> Source.getChildElements()
          Returns a list of the top-level elements in the document element hierarchy.
 java.util.List<Element> Segment.getChildElements()
          Returns a list of the immediate children of this segment in the document element hierarchy.
 java.util.List<Element> Element.getChildElements()
          Returns a list of the immediate children of this element in the document element hierarchy.
 java.util.Iterator<Element> FormControl.getOptionElementIterator()
          Returns an iterator over the OPTION elements contained within this control, in order of appearance.