Uses of Class
org.jsoup.nodes.Attribute
-
Packages that use Attribute Package Description org.jsoup.nodes HTML document structure nodes.org.jsoup.safety Contains the jsoup HTML cleaner, and whitelist definitions. -
-
Uses of Attribute in org.jsoup.nodes
Subclasses of Attribute in org.jsoup.nodes Modifier and Type Class Description class
BooleanAttribute
Deprecated.just use null values (vs empty string) for booleans.Fields in org.jsoup.nodes declared as Attribute Modifier and Type Field Description private Attribute
Attributes.Dataset.DatasetIterator. attr
Fields in org.jsoup.nodes with type parameters of type Attribute Modifier and Type Field Description private java.util.Iterator<Attribute>
Attributes.Dataset.DatasetIterator. attrIter
Methods in org.jsoup.nodes that return Attribute Modifier and Type Method Description Attribute
Attribute. clone()
static Attribute
Attribute. createFromEncoded(java.lang.String unencodedKey, java.lang.String encodedValue)
Create a new Attribute from an unencoded key and a HTML attribute encoded value.Methods in org.jsoup.nodes that return types with arguments of type Attribute Modifier and Type Method Description java.util.List<Attribute>
Attributes. asList()
Get the attributes as a List, for iteration.java.util.Iterator<Attribute>
Attributes. iterator()
Methods in org.jsoup.nodes with parameters of type Attribute Modifier and Type Method Description Attributes
Attributes. put(Attribute attribute)
Set a new attribute, or replace an existing one by key. -
Uses of Attribute in org.jsoup.safety
Methods in org.jsoup.safety with parameters of type Attribute Modifier and Type Method Description protected boolean
Whitelist. isSafeAttribute(java.lang.String tagName, Element el, Attribute attr)
Test if the supplied attribute is allowed by this whitelist for this tagprivate boolean
Whitelist. testValidProtocol(Element el, Attribute attr, java.util.Set<Whitelist.Protocol> protocols)
-