Uses of Class
org.jsoup.parser.Tag

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

    Methods in org.jsoup.nodes that return Tag
    Modifier and Type
    Method
    Description
    Tag
    Element.tag()
    Get the Tag for this element.
    Methods in org.jsoup.nodes with parameters of type Tag
    Modifier and Type
    Method
    Description
    Element.tag(Tag tag)
    Change the Tag of this element.
    Constructors in org.jsoup.nodes with parameters of type Tag
    Modifier
    Constructor
    Description
     
    Element(Tag tag, @Nullable String baseUri)
    Create a new Element from a Tag and a base URI.
     
    Element(Tag tag, @Nullable String baseUri, @Nullable Attributes attributes)
    Create a new, standalone Element.
     
    FormElement(Tag tag, @Nullable String baseUri, @Nullable Attributes attributes)
    Create a new, standalone form element.
     
    PseudoTextElement(Tag tag, String baseUri, Attributes attributes)
     
  • Uses of Tag in org.jsoup.parser

    Methods in org.jsoup.parser that return Tag
    Modifier and Type
    Method
    Description
    Tag
    Tag.clear(int option)
    Clear (unset) an option from this tag.
    protected Tag
    Tag.clone()
     
    @Nullable Tag
    TagSet.get(String tagName, String namespace)
    Get an existing Tag from this TagSet by tagName and namespace.
    Tag
    Tag.name(String tagName)
    Change the tag's name.
    Tag
    Tag.namespace(String namespace)
    Set the tag's namespace.
    Tag
    Tag.set(int option)
    Set an option on this tag.
    static Tag
    Tag.valueOf(String tagName)
    Get a Tag by name.
    static Tag
    Tag.valueOf(String tagName, String namespace, ParseSettings settings)
    Get a Tag by name.
    static Tag
    Tag.valueOf(String tagName, ParseSettings settings)
    Get a Tag by name.
    Tag
    TagSet.valueOf(String tagName, String namespace)
    Get a Tag by name from this TagSet.
    Tag
    TagSet.valueOf(String tagName, String namespace, ParseSettings settings)
    Get a Tag by name from this TagSet.
    Methods in org.jsoup.parser with parameters of type Tag
    Modifier and Type
    Method
    Description
    TagSet.add(Tag tag)
    Insert a tag into this TagSet.