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 Parser
Parser.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 Parser
FilterBean.mParser
The parser used to filter.protected Parser
LinkBean.mParser
The parser used to extract strings.protected Parser
StringBean.mParser
The 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 void
Filter.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.static Filter
Filter.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 TypeMethodDescriptionvoid
AndFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
HasAttributeFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
HasChildFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
HasParentFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
HasSiblingFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
NodeClassFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
NotFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
OrFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
RegexFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
StringFilterWrapper.setNodeFilter
(NodeFilter filter, Parser context) Assign the underlying node filter for this wrapper.void
TagNameFilterWrapper.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 Parser
Locator.mParser
Underlying parser object.protected Parser
XMLReader.mParser
The 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 Parser
ParserUtils.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