Uses of Class
org.htmlparser.Parser
Packages that use Parser
Package
Description
The basic API classes which will be used by most developers when working with
the HTML Parser.
The beans package contains Java Beans using the HTML Parser.
Example applications.
The sax package implements a SAX (Simple API for XML) parser for HTML.
Code which can be reused by many classes, is located in this package.
The visitors package contains classes that use the Visitor pattern.
-
Uses of Parser in org.htmlparser
Methods in org.htmlparser that return ParserModifier and TypeMethodDescriptionstatic ParserParser.createParser(String html, String charset) Creates the parser on an input string. -
Uses of Parser in org.htmlparser.beans
Fields in org.htmlparser.beans declared as ParserModifier and TypeFieldDescriptionprotected ParserFilterBean.mParserThe parser used to filter.protected ParserLinkBean.mParserThe parser used to extract strings.protected ParserStringBean.mParserThe parser used to extract strings.Methods in org.htmlparser.beans that return ParserMethods in org.htmlparser.beans with parameters of type Parser -
Uses of Parser in org.htmlparser.parserapplications
Fields in org.htmlparser.parserapplications declared as Parser -
Uses of Parser in org.htmlparser.parserapplications.filterbuilder
Methods in org.htmlparser.parserapplications.filterbuilder with parameters of type ParserModifier and TypeMethodDescriptionstatic Filter[]Filter.reconstitute(String string, Parser context) Returns the filters represented by the string.abstract voidFilter.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.static FilterFilter.wrap(NodeFilter filter, Parser context) Returns a wrapped filter. -
Uses of Parser in org.htmlparser.parserapplications.filterbuilder.wrappers
Methods in org.htmlparser.parserapplications.filterbuilder.wrappers with parameters of type ParserModifier and TypeMethodDescriptionvoidAndFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidHasAttributeFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidHasChildFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidHasParentFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidHasSiblingFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidNodeClassFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidNotFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidOrFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidRegexFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidStringFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.voidTagNameFilterWrapper.setNodeFilter(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper. -
Uses of Parser in org.htmlparser.sax
Fields in org.htmlparser.sax declared as ParserModifier and TypeFieldDescriptionprotected ParserLocator.mParserUnderlying parser object.protected ParserXMLReader.mParserThe underlying DOM parser.Constructors in org.htmlparser.sax with parameters of type Parser -
Uses of Parser in org.htmlparser.util
Methods in org.htmlparser.util that return ParserModifier and TypeMethodDescriptionstatic ParserParserUtils.createParserParsingAnInputString(String input) Create a Parser Object having a String Object as input (instead of a url or a string representing the url location). -
Uses of Parser in org.htmlparser.visitors
Constructors in org.htmlparser.visitors with parameters of type Parser