Uses of Class
org.jsoup.parser.Tag
-
Packages that use Tag Package Description org.jsoup.nodes HTML document structure nodes.org.jsoup.parser Contains the HTML parser, tag specifications, and HTML tokeniser. -
-
Uses of Tag in org.jsoup.nodes
Fields in org.jsoup.nodes declared as Tag Modifier and Type Field Description private Tag
Element. tag
Methods in org.jsoup.nodes that return Tag Modifier and Type Method Description Tag
Element. tag()
Get the Tag for this element.Constructors in org.jsoup.nodes with parameters of type Tag Constructor Description Element(Tag tag, java.lang.String baseUri)
Create a new Element from a Tag and a base URI.Element(Tag tag, java.lang.String baseUri, Attributes attributes)
Create a new, standalone Element.FormElement(Tag tag, java.lang.String baseUri, Attributes attributes)
Create a new, standalone form element.PseudoTextElement(Tag tag, java.lang.String baseUri, Attributes attributes)
-
Uses of Tag in org.jsoup.parser
Fields in org.jsoup.parser with type parameters of type Tag Modifier and Type Field Description (package private) java.util.Map<java.lang.String,Tag>
TreeBuilder. seenTags
private static java.util.Map<java.lang.String,Tag>
Tag. Tags
Methods in org.jsoup.parser that return Tag Modifier and Type Method Description protected Tag
Tag. clone()
(package private) Tag
Tag. setSelfClosing()
(package private) Tag
TreeBuilder. tagFor(java.lang.String tagName, java.lang.String namespace, ParseSettings settings)
(package private) Tag
TreeBuilder. tagFor(java.lang.String tagName, ParseSettings settings)
static Tag
Tag. valueOf(java.lang.String tagName)
Get a Tag by name.static Tag
Tag. valueOf(java.lang.String tagName, java.lang.String namespace, ParseSettings settings)
Get a Tag by name.static Tag
Tag. valueOf(java.lang.String tagName, ParseSettings settings)
Get a Tag by name.Method parameters in org.jsoup.parser with type arguments of type Tag Modifier and Type Method Description private static void
Tag. setupTags(java.lang.String[] tagNames, java.util.function.Consumer<Tag> tagModifier)
-