Package org.jsoup.parser
Class Token.StartTag
- java.lang.Object
-
- org.jsoup.parser.Token
-
- org.jsoup.parser.Token.Tag
-
- org.jsoup.parser.Token.StartTag
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jsoup.parser.Token
Token.CData, Token.Character, Token.Comment, Token.Doctype, Token.EndTag, Token.EOF, Token.StartTag, Token.Tag, Token.TokenType
-
-
Field Summary
-
Fields inherited from class org.jsoup.parser.Token.Tag
attributes, attrNameEnd, attrNameStart, attrValEnd, attrValStart, normalName, selfClosing, tagName, trackSource, treeBuilder
-
-
Constructor Summary
Constructors Constructor Description StartTag(TreeBuilder treeBuilder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) Token.StartTag
nameAttr(java.lang.String name, Attributes attributes)
(package private) Token.Tag
reset()
Reset the data represent by this token, for reuse.java.lang.String
toString()
-
Methods inherited from class org.jsoup.parser.Token.Tag
appendAttributeName, appendAttributeName, appendAttributeValue, appendAttributeValue, appendAttributeValue, appendTagName, appendTagName, finaliseTag, hasAttribute, hasAttributeIgnoreCase, hasAttributes, isSelfClosing, name, name, newAttribute, normalName, setEmptyAttributeValue, toStringName
-
Methods inherited from class org.jsoup.parser.Token
asCharacter, asComment, asDoctype, asEndTag, asStartTag, endPos, endPos, isCData, isCharacter, isComment, isDoctype, isEndTag, isEOF, isStartTag, reset, startPos, startPos, tokenType
-
-
-
-
Constructor Detail
-
StartTag
StartTag(TreeBuilder treeBuilder)
-
-
Method Detail
-
reset
Token.Tag reset()
Description copied from class:Token
Reset the data represent by this token, for reuse. Prevents the need to create transfer objects for every piece of data, which immediately get GCed.
-
nameAttr
Token.StartTag nameAttr(java.lang.String name, Attributes attributes)
-
-