Uses of Class
com.itextpdf.styledxmlparser.jsoup.nodes.Attribute
-
Packages that use Attribute Package Description com.itextpdf.styledxmlparser.jsoup.nodes com.itextpdf.styledxmlparser.jsoup.safety com.itextpdf.styledxmlparser.node.impl.jsoup.node -
-
Uses of Attribute in com.itextpdf.styledxmlparser.jsoup.nodes
Fields in com.itextpdf.styledxmlparser.jsoup.nodes declared as Attribute Modifier and Type Field Description private Attribute
Attributes.Dataset.DatasetIterator. attr
Fields in com.itextpdf.styledxmlparser.jsoup.nodes with type parameters of type Attribute Modifier and Type Field Description private java.util.Iterator<Attribute>
Attributes.Dataset.DatasetIterator. attrIter
Methods in com.itextpdf.styledxmlparser.jsoup.nodes that return Attribute Modifier and Type Method Description 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 com.itextpdf.styledxmlparser.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 com.itextpdf.styledxmlparser.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 com.itextpdf.styledxmlparser.jsoup.safety
Methods in com.itextpdf.styledxmlparser.jsoup.safety with parameters of type Attribute Modifier and Type Method Description protected boolean
Safelist. isSafeAttribute(java.lang.String tagName, Element el, Attribute attr)
Test if the supplied attribute is allowed by this safelist for this tagprotected boolean
Whitelist. isSafeAttribute(java.lang.String tagName, Element el, Attribute attr)
Deprecated.private boolean
Safelist. testValidProtocol(Element el, Attribute attr, java.util.Set<Safelist.Protocol> protocols)
-
Uses of Attribute in com.itextpdf.styledxmlparser.node.impl.jsoup.node
Fields in com.itextpdf.styledxmlparser.node.impl.jsoup.node declared as Attribute Modifier and Type Field Description private Attribute
JsoupAttribute. attribute
The JSoupAttribute
instance.Fields in com.itextpdf.styledxmlparser.node.impl.jsoup.node with type parameters of type Attribute Modifier and Type Field Description private java.util.Iterator<Attribute>
JsoupAttributes.AttributeIterator. iterator
The iterator.Constructors in com.itextpdf.styledxmlparser.node.impl.jsoup.node with parameters of type Attribute Constructor Description JsoupAttribute(Attribute attribute)
Creates a newJsoupAttribute
instance.Constructor parameters in com.itextpdf.styledxmlparser.node.impl.jsoup.node with type arguments of type Attribute Constructor Description AttributeIterator(java.util.Iterator<Attribute> iterator)
Instantiates a new iterator.
-