Uses of Class
net.htmlparser.jericho.StartTag

Uses of StartTag in net.htmlparser.jericho
 

Methods in net.htmlparser.jericho that return StartTag
protected  StartTag StartTagType.constructStartTag(Source source, int begin, int end, java.lang.String name, Attributes attributes)
          Internal method for the construction of a StartTag object if this type.
 StartTag Segment.getFirstStartTag()
          Returns the first StartTag enclosed by this segment.
 StartTag Segment.getFirstStartTag(StartTagType startTagType)
          Returns the first StartTag of the specified type enclosed by this segment.
 StartTag Segment.getFirstStartTag(java.lang.String name)
          Returns the first normal StartTag enclosed by this segment.
 StartTag Segment.getFirstStartTag(java.lang.String attributeName, java.util.regex.Pattern valueRegexPattern)
          Returns the first StartTag with the specified attribute name and value pattern that is enclosed by this segment.
 StartTag Segment.getFirstStartTag(java.lang.String attributeName, java.lang.String value, boolean valueCaseSensitive)
          Returns the first StartTag with the specified attribute name/value pair enclosed by this segment.
 StartTag Segment.getFirstStartTagByClass(java.lang.String className)
          Returns the first StartTag with the specified class that is enclosed by this segment.
 StartTag Source.getNextStartTag(int pos)
          Returns the StartTag beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTag(int pos, StartTagType startTagType)
          Returns the StartTag of the specified type beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTag(int pos, java.lang.String name)
          Returns the normal StartTag with the specified name beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTag(int pos, java.lang.String attributeName, java.util.regex.Pattern valueRegexPattern)
          Returns the StartTag with the specified attribute name and value pattern beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTag(int pos, java.lang.String name, StartTagType startTagType)
          Returns the StartTag with the specified name and type beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTag(int pos, java.lang.String attributeName, java.lang.String value, boolean valueCaseSensitive)
          Returns the StartTag with the specified attribute name/value pair beginning at or immediately following the specified position in the source document.
 StartTag Source.getNextStartTagByClass(int pos, java.lang.String className)
          Returns the StartTag with the specified class beginning at or immediately following the specified position in the source document.
 StartTag Source.getPreviousStartTag(int pos)
          Returns the StartTag at or immediately preceding (or enclosing) the specified position in the source document.
 StartTag Source.getPreviousStartTag(int pos, StartTagType startTagType)
          Returns the StartTag of the specified type at or immediately preceding (or enclosing) the specified position in the source document.
 StartTag Source.getPreviousStartTag(int pos, java.lang.String name)
          Returns the normal StartTag with the specified name at or immediately preceding (or enclosing) the specified position in the source document.
 StartTag Source.getPreviousStartTag(int pos, java.lang.String name, StartTagType startTagType)
          Returns the StartTag with the specified name and type at or immediately preceding (or enclosing) the specified position in the source document.
 StartTag Element.getStartTag()
          Returns the start tag of the element.
 StartTag Attribute.getStartTag()
          Returns the start tag to which this attribute belongs.
 

Methods in net.htmlparser.jericho that return types with arguments of type StartTag
 java.util.List<StartTag> Source.getAllStartTags()
          Returns a list of all start tags in this source document.
 java.util.List<StartTag> Segment.getAllStartTags()
          Returns a list of all StartTag objects that are enclosed by this segment.
 java.util.List<StartTag> Segment.getAllStartTags(StartTagType startTagType)
          Returns a list of all StartTag objects of the specified type that are enclosed by this segment.
 java.util.List<StartTag> Segment.getAllStartTags(java.lang.String name)
          Returns a list of all normal StartTag objects with the specified name that are enclosed by this segment.
 java.util.List<StartTag> Segment.getAllStartTags(java.lang.String attributeName, java.util.regex.Pattern valueRegexPattern)
          Returns a list of all StartTag objects with the specified attribute name and value pattern that are enclosed by this segment.
 java.util.List<StartTag> Segment.getAllStartTags(java.lang.String attributeName, java.lang.String value, boolean valueCaseSensitive)
          Returns a list of all StartTag objects with the specified attribute name/value pair that are enclosed by this segment.
 java.util.List<StartTag> Segment.getAllStartTagsByClass(java.lang.String className)
          Returns a list of all StartTag objects with the specified class that are enclosed by this segment.
 

Methods in net.htmlparser.jericho with parameters of type StartTag
 boolean TextExtractor.excludeElement(StartTag startTag)
          Indicates whether the text inside the Element of the specified start tag should be excluded from the output.
 boolean TextExtractor.includeAttribute(StartTag startTag, Attribute attribute)
          Indicates whether the value of the specified attribute in the specified start tag is included in the output.
 java.lang.String Renderer.renderAlternateText(StartTag startTag)
          Renders the alternate text of the specified start tag.
 java.lang.String Renderer.renderHyperlinkURL(StartTag startTag)
          Renders the hyperlink URL from the specified StartTag.