Uses of Class
org.jsoup.nodes.Attributes
-
Packages that use Attributes Package Description org.jsoup.nodes HTML document structure nodes.org.jsoup.parser Contains the HTML parser, tag specifications, and HTML tokeniser.org.jsoup.safety Contains the jsoup HTML cleaner, and safelist definitions. -
-
Uses of Attributes in org.jsoup.nodes
Fields in org.jsoup.nodes declared as Attributes Modifier and Type Field Description private Attributes
Attributes.Dataset. attributes
(package private) Attributes
Element. attributes
(package private) Attributes
Attribute. parent
Methods in org.jsoup.nodes that return Attributes Modifier and Type Method Description Attributes
Attributes. add(java.lang.String key, java.lang.String value)
Adds a new attribute.Attributes
Element. attributes()
Attributes
LeafNode. attributes()
abstract Attributes
Node. attributes()
Get each of the Element's attributes.Attributes
Attributes. clone()
Attributes
Attributes. put(java.lang.String key, boolean value)
Set a new boolean attribute.Attributes
Attributes. put(java.lang.String key, java.lang.String value)
Set a new attribute, or replace an existing one by key.Attributes
Attributes. put(Attribute attribute)
Set a new attribute, or replace an existing one by key.Attributes
Attributes. userData(java.lang.String key, java.lang.Object value)
Set an arbitrary user-data object by key.Methods in org.jsoup.nodes with parameters of type Attributes Modifier and Type Method Description void
Attributes. addAll(Attributes incoming)
Add all the attributes from the incoming set to this set.Constructors in org.jsoup.nodes with parameters of type Attributes Constructor Description Attribute(java.lang.String key, java.lang.String val, Attributes parent)
Create a new attribute from unencoded (raw) key and value.Dataset(Attributes attributes)
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 Attributes in org.jsoup.parser
Fields in org.jsoup.parser declared as Attributes Modifier and Type Field Description (package private) Attributes
Token.Tag. attributes
Methods in org.jsoup.parser that return Attributes Modifier and Type Method Description (package private) Attributes
ParseSettings. normalizeAttributes(Attributes attributes)
Methods in org.jsoup.parser with parameters of type Attributes Modifier and Type Method Description (package private) Token.StartTag
Token.StartTag. nameAttr(java.lang.String name, Attributes attributes)
(package private) Attributes
ParseSettings. normalizeAttributes(Attributes attributes)
(package private) boolean
TreeBuilder. processStartTag(java.lang.String name, Attributes attrs)
-
Uses of Attributes in org.jsoup.safety
Methods in org.jsoup.safety that return Attributes Modifier and Type Method Description Attributes
Safelist. getEnforcedAttributes(java.lang.String tagName)
Gets the Attributes that should be enforced for a given tag
-