Package | Description |
---|---|
org.jsoup.nodes |
HTML document structure nodes.
|
Modifier and Type | Method and Description |
---|---|
Attributes |
Attributes.add(String key,
String value)
Adds a new attribute.
|
abstract Attributes |
Node.attributes()
Get all of the element's attributes.
|
Attributes |
Element.attributes() |
Attributes |
Attributes.clone() |
Attributes |
Attributes.put(Attribute attribute)
Set a new attribute, or replace an existing one by key.
|
Attributes |
Attributes.put(String key,
boolean value)
Set a new boolean attribute, remove attribute if value is false.
|
Attributes |
Attributes.put(String key,
String value)
Set a new attribute, or replace an existing one by key.
|
Modifier and Type | Method and Description |
---|---|
void |
Attributes.addAll(Attributes incoming)
Add all the attributes from the incoming set to this set.
|
Constructor and Description |
---|
Attribute(String key,
String val,
Attributes parent)
Create a new attribute from unencoded (raw) key and value.
|
Element(Tag tag,
String baseUri,
Attributes attributes)
Create a new, standalone Element.
|
FormElement(Tag tag,
String baseUri,
Attributes attributes)
Create a new, standalone form element.
|
PseudoTextElement(Tag tag,
String baseUri,
Attributes attributes) |
Copyright © 2009–2024 Jonathan Hedley. All rights reserved.