Uses of Class
org.jsoup.parser.TagSet

Packages that use TagSet
Package
Description
Contains the HTML parser, tag specifications, and HTML tokeniser.
  • Uses of TagSet in org.jsoup.parser

    Methods in org.jsoup.parser that return TagSet
    Modifier and Type
    Method
    Description
    TagSet.add(Tag tag)
    Insert a tag into this TagSet.
    static TagSet
    TagSet.Html()
    Returns a mutable copy of the default HTML tag set.
    TagSet.onNewTag(Consumer<Tag> customizer)
    Register a callback to customize each Tag as it's added to this TagSet.
    Parser.tagSet()
    Get the current TagSet for this Parser, which will be either this parser's default, or one that you have set.
    Methods in org.jsoup.parser with parameters of type TagSet
    Modifier and Type
    Method
    Description
    Parser.tagSet(TagSet tagSet)
    Set a custom TagSet to use for this Parser.
    Constructors in org.jsoup.parser with parameters of type TagSet
    Modifier
    Constructor
    Description
     
    TagSet(TagSet template)
    Creates a new TagSet by copying the current tags and customizers from the provided source TagSet.