MCPcopy Create free account

hub / github.com/code4craft/jsoup-learning / functions

Functions1,337 in github.com/code4craft/jsoup-learning

↓ 14 callersMethodisEmpty
Is the queue empty? @return true if no data left in queue.
src/main/java/org/jsoup/parser/TokenQueue.java:30
↓ 14 callersMethodisWhitespace
(Token t)
src/main/java/org/jsoup/parser/HtmlTreeBuilderState.java:1458
↓ 14 callersMethodunconsume
()
src/main/java/org/jsoup/parser/CharacterReader.java:43
↓ 13 callersMethodappend
Add the supplied HTML to the end of each matched element's inner HTML. @param html HTML to add inside each element, after the existing HTML @return th
src/main/java/org/jsoup/select/Elements.java:294
↓ 13 callersMethodentrySet
()
src/main/java/org/jsoup/nodes/Attributes.java:198
↓ 13 callersMethodexecute
Execute the request. @return a response object @throws java.net.MalformedURLException if the request URL is not a HTTP or HTTPS URL, or is otherwise m
src/main/java/org/jsoup/Connection.java:202
↓ 13 callersMethodgetWholeText
Get the (unencoded) text of this text node, including any newlines and spaces present in the original. @return text
src/main/java/org/jsoup/nodes/TextNode.java:60
↓ 13 callersMethodinScope
(String[] targetNames)
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:456
↓ 13 callersMethodinTableScope
(String targetName)
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:478
↓ 13 callersMethodmatches
(char c)
src/main/java/org/jsoup/parser/CharacterReader.java:200
↓ 13 callersMethodmatches
(boolean own)
src/main/java/org/jsoup/select/QueryParser.java:339
↓ 13 callersMethodpopStackToClose
If the stack contains an element with this tag's name, pop up the stack to remove the first occurrence. If not found, skips. @param endTag
src/main/java/org/jsoup/parser/XmlTreeBuilder.java:94
↓ 13 callersMethodrequest
Get the request object associated with this connection @return request
src/main/java/org/jsoup/Connection.java:208
↓ 12 callersMethodcookie
Get a cookie value by name from this request/response. <p> Response objects have a simplified cookie model. Each cookie set in the response is added t
src/main/java/org/jsoup/Connection.java:310
↓ 12 callersMethodemitTagPending
()
src/main/java/org/jsoup/parser/Tokeniser.java:164
↓ 12 callersMethodgetCharsetFromContentType
Parse out a charset from a content type header. If the charset is not supported, returns null (so the default will kick in.) @param contentType e.g. "
src/main/java/org/jsoup/helper/DataUtil.java:149
↓ 12 callersMethodgetFile
(String resourceName)
src/test/java/org/jsoup/integration/ParseTest.java:161
↓ 12 callersMethodinButtonScope
(String targetName)
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:474
↓ 12 callersMethodisWhitespace
Tests if a code point is "whitespace" as defined in the HTML spec. @param c code point to test @return true if code point is whitespace, false otherwi
src/main/java/org/jsoup/helper/StringUtil.java:102
↓ 12 callersMethodnextIndexOf
Returns the number of characters between the current position and the next instance of the input char @param c scan target @return offset between curr
src/main/java/org/jsoup/parser/CharacterReader.java:68
↓ 12 callersMethodpop
()
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:240
↓ 12 callersMethodremainder
Consume and return whatever is left on the queue. @return remained of queue.
src/main/java/org/jsoup/parser/TokenQueue.java:382
↓ 12 callersMethodtag
Get the Tag for this element. @return the tag object
src/main/java/org/jsoup/nodes/Element.java:85
↓ 12 callersMethodtoString
()
src/main/java/org/jsoup/helper/HttpConnection.java:690
↓ 11 callersMethodaddChildren
(Node... children)
src/main/java/org/jsoup/nodes/Node.java:428
↓ 11 callersMethodasCharacter
()
src/main/java/org/jsoup/parser/Token.java:260
↓ 11 callersMethodelementSiblingIndex
Get the list index of this element in its element sibling list. I.e. if this is the first element sibling, returns 0. @return position in element sibl
src/main/java/org/jsoup/nodes/Element.java:514
↓ 11 callersMethodescape
(String string, Document.OutputSettings out)
src/main/java/org/jsoup/nodes/Entities.java:75
↓ 11 callersMethodgenerateImpliedEndTags
11.2.5.2 Closing elements that have implied end tags<p/> When the steps below require the UA to generate implied end tags, then, while the curren
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:541
↓ 11 callersMethodget
Get an attribute value by key. @param key the attribute key @return the attribute value if set; or empty string if not set. @see #hasKe
src/main/java/org/jsoup/nodes/Attributes.java:30
↓ 11 callersMethodgetData
()
src/main/java/org/jsoup/parser/Token.java:190
↓ 11 callersMethodisComment
()
src/main/java/org/jsoup/parser/Token.java:248
↓ 11 callersMethodisDoctype
()
src/main/java/org/jsoup/parser/Token.java:224
↓ 11 callersMethodmatchesAny
Tests if the next characters match any of the sequences. Case insensitive. @param seq list of strings to case insensitively check for @retur
src/main/java/org/jsoup/parser/TokenQueue.java:88
↓ 11 callersMethodmatchesIgnoreCase
(String seq)
src/main/java/org/jsoup/parser/CharacterReader.java:216
↓ 10 callersMethodattr
Get an attribute value from the first matched element that has the attribute. @param attributeKey The attribute key. @return The attribute v
src/main/java/org/jsoup/select/Elements.java:62
↓ 10 callersMethodbody
Get the body of the response as a plain string. @return body
src/main/java/org/jsoup/Connection.java:479
↓ 10 callersMethodchompBalanced
Pulls a balanced string off the queue. E.g. if queue is "(one (two) three) four", (,) will return "one (two) three", and leave " four" on the queue. U
src/main/java/org/jsoup/parser/TokenQueue.java:262
↓ 10 callersMethodclassName
Gets the literal value of this element's "class" attribute, which may include multiple class names, space separated. (E.g. on <code>&lt;div class="hea
src/main/java/org/jsoup/nodes/Element.java:954
↓ 10 callersMethodclassNames
Get all of the element's class names. E.g. on element {@code <div class="header gray"}>}, returns a set of two elements {@code "header", "gray"}. Note
src/main/java/org/jsoup/nodes/Element.java:964
↓ 10 callersMethodconsumeTo
(char c)
src/main/java/org/jsoup/parser/CharacterReader.java:101
↓ 10 callersMethodemitCommentPending
()
src/main/java/org/jsoup/parser/Tokeniser.java:173
↓ 10 callersMethodhasKey
Tests if these attributes contain an attribute with this key. @param key key to check for @return true if key exists, false otherwise
src/main/java/org/jsoup/nodes/Attributes.java:77
↓ 10 callersMethodhtmlParser
Create a new HTML parser. This parser treats input as HTML5, and enforces the creation of a normalised document, based on a knowledge of the semantics
src/main/java/org/jsoup/parser/Parser.java:169
↓ 10 callersMethodihVal
(String key, Document doc)
src/test/java/org/jsoup/integration/UrlConnectTest.java:107
↓ 10 callersMethodinsertEmpty
(Token.StartTag startTag)
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:183
↓ 10 callersMethodrelaxed
This whitelist allows a full range of text and structural body HTML: <code>a, b, blockquote, br, caption, cite, code, col, colgroup, dd, dl, dt,
src/main/java/org/jsoup/safety/Whitelist.java:132
↓ 9 callersMethodaddProtocols
Add allowed URL protocols for an element's URL attribute. This restricts the possible values of the attribute to URLs with the defined protocol.
src/main/java/org/jsoup/safety/Whitelist.java:292
↓ 9 callersMethodadvance
Drops the next character off the queue.
src/main/java/org/jsoup/parser/TokenQueue.java:146
↓ 9 callersMethodbasic
This whitelist allows a fuller range of text nodes: <code>a, b, blockquote, br, cite, code, dd, dl, dt, em, i, li, ol, p, pre, q, small, strike,
src/main/java/org/jsoup/safety/Whitelist.java:89
↓ 9 callersMethodconsumeTo
Pulls a string off the queue, up to but exclusive of the match sequence, or to the queue running out. @param seq String to end on (and not include in
src/main/java/org/jsoup/parser/TokenQueue.java:180
↓ 9 callersMethodconsumeToEnd
()
src/main/java/org/jsoup/parser/CharacterReader.java:137
↓ 9 callersMethodisBlank
Test if this text node is blank -- that is, empty or only whitespace (including newlines). @return true if this document is empty or only whitesp
src/main/java/org/jsoup/nodes/TextNode.java:68
↓ 9 callersMethodisBlank
Tests if a string is blank: null, emtpy, or only whitespace (" ", \r\n, \t, etc) @param string string to test @return if string is blank
src/main/java/org/jsoup/helper/StringUtil.java:68
↓ 9 callersMethodprettyPrint
Get if pretty printing is enabled. Default is true. If disabled, the HTML output methods will not re-format the output, and the output will generally
src/main/java/org/jsoup/nodes/Document.java:284
↓ 9 callersMethodread
(Tokeniser t, CharacterReader r)
src/main/java/org/jsoup/parser/ITokeniserState.java:8
↓ 8 callersMethodappendElement
Create a new element by tag name, and add it as the last child. @param tagName the name of the tag (e.g. {@code div}). @return the new element, to al
src/main/java/org/jsoup/nodes/Element.java:310
↓ 8 callersMethodasList
Get the attributes as a List, for iteration. Do not modify the keys of the attributes via this view, as changes to keys will not be recognised in
src/main/java/org/jsoup/nodes/Attributes.java:112
↓ 8 callersMethodattributes
Get all of the element's attributes. @return attributes (which implements iterable, in same order as presented in original HTML).
src/main/java/org/jsoup/nodes/Node.java:84
↓ 8 callersMethodinsertChildren
Inserts the given child nodes into this element at the specified index. Current nodes will be shifted to the right. The inserted nodes will be moved f
src/main/java/org/jsoup/nodes/Element.java:291
↓ 8 callersMethodisNumeric
Tests if a string is numeric, i.e. contains only digit characters @param string string to test @return true if only digit chars, false if empty or nul
src/main/java/org/jsoup/helper/StringUtil.java:85
↓ 8 callersMethodpos
()
src/main/java/org/jsoup/parser/CharacterReader.java:25
↓ 8 callersMethodprint
(String msg, Object... args)
src/main/java/org/jsoup/examples/ListLinks.java:46
↓ 8 callersMethodtext
Get the text content of this text node. @return Unencoded, normalised text. @see TextNode#getWholeText()
src/main/java/org/jsoup/nodes/TextNode.java:40
↓ 8 callersMethodtoArray
()
src/main/java/org/jsoup/select/Elements.java:513
↓ 7 callersMethodappendTagName
(String append)
src/main/java/org/jsoup/parser/Token.java:101
↓ 7 callersMethodchildNodes
Get this node's children. Presented as an unmodifiable list: new children can not be added, but the child nodes themselves can be manipulated.
src/main/java/org/jsoup/nodes/Node.java:212
↓ 7 callersMethodcookies
Retrieve all of the request/response cookies as a map @return cookies
src/main/java/org/jsoup/Connection.java:338
↓ 7 callersMethodcreateTagPending
(boolean start)
src/main/java/org/jsoup/parser/Tokeniser.java:159
↓ 7 callersMethodequals
(Object o)
src/main/java/org/jsoup/nodes/Node.java:572
↓ 7 callersMethodescapeMode
Get the document's current HTML escape mode: <code>base</code>, which provides a limited set of named HTML entities and escapes other characters as nu
src/main/java/org/jsoup/nodes/Document.java:227
↓ 7 callersMethodfail
Cause a failure. @param msg message to output.
src/main/java/org/jsoup/helper/Validate.java:109
↓ 7 callersMethodformatAsBlock
Gets if this tag should be formatted as a block (or as inline) @return if should be formatted as block or inline
src/main/java/org/jsoup/parser/Tag.java:81
↓ 7 callersMethodgetStack
()
src/main/java/org/jsoup/parser/HtmlTreeBuilder.java:253
↓ 7 callersMethodhasAttr
()
src/test/java/org/jsoup/select/ElementsTest.java:47
↓ 7 callersMethodisEOF
()
src/main/java/org/jsoup/parser/Token.java:264
↓ 7 callersMethodisSelfClosing
Get if this tag is self closing. @return if this tag should be output as self closing.
src/main/java/org/jsoup/parser/Tag.java:126
↓ 7 callersMethodouterHtml
Get the outer HTML of this node. @return HTML
src/main/java/org/jsoup/nodes/Node.java:540
↓ 7 callersMethodparseBodyFragment
Parse a fragment of HTML, with the assumption that it forms the {@code body} of the HTML. @param bodyHtml body HTML fragment @param baseUri
src/main/java/org/jsoup/Jsoup.java:147
↓ 7 callersMethodparseInput
(String html, String baseUri)
src/main/java/org/jsoup/parser/Parser.java:29
↓ 7 callersMethodvalueOf
(String value)
src/main/java/org/jsoup/safety/Whitelist.java:394
↓ 6 callersMethodacknowledgeSelfClosingFlag
()
src/main/java/org/jsoup/parser/Tokeniser.java:98
↓ 6 callersMethodaddAll
(Collection<? extends Element> c)
src/main/java/org/jsoup/select/Elements.java:523
↓ 6 callersMethodappendAttributeName
(String append)
src/main/java/org/jsoup/parser/Token.java:109
↓ 6 callersMethodbasicWithImages
This whitelist allows the same text tags as {@link #basic}, and also allows <code>img</code> tags, with appropriate attributes, with <code>src</c
src/main/java/org/jsoup/safety/Whitelist.java:115
↓ 6 callersMethodconsumeCharacterReference
(Character additionalAllowedCharacter, boolean inAttribute)
src/main/java/org/jsoup/parser/Tokeniser.java:102
↓ 6 callersMethodconsumeLetterSequence
()
src/main/java/org/jsoup/parser/CharacterReader.java:143
↓ 6 callersMethodcreateTempBuffer
()
src/main/java/org/jsoup/parser/Tokeniser.java:185
↓ 6 callersMethodensureAttributes
()
src/main/java/org/jsoup/nodes/TextNode.java:133
↓ 6 callersMethodequals
(Object o)
src/main/java/org/jsoup/nodes/Element.java:1130
↓ 6 callersMethodequals
(Object o)
src/main/java/org/jsoup/select/Elements.java:533
↓ 6 callersMethodgetName
Get this tag's name. @return the tag's name
src/main/java/org/jsoup/parser/Tag.java:36
↓ 6 callersMethodhasAttr
Test if this element has an attribute. @param attributeKey The attribute key to check. @return true if the attribute exists, false if not.
src/main/java/org/jsoup/nodes/Node.java:104
↓ 6 callersMethodhead
Accessor to the document's {@code head} element. @return {@code head}
src/main/java/org/jsoup/nodes/Document.java:51
↓ 6 callersMethodhtml
Get the HTML representation of this attribute; e.g. {@code href="index.html"}. @return HTML
src/main/java/org/jsoup/nodes/Attribute.java:68
↓ 6 callersMethodmatchConsume
(String seq)
src/main/java/org/jsoup/parser/CharacterReader.java:256
↓ 6 callersMethodmatchesWord
Test if the queue matches a word character (letter or digit). @return if matches a word character
src/main/java/org/jsoup/parser/TokenQueue.java:139
↓ 6 callersMethodmaxBodySize
Get the maximum body size, in milliseconds. @return the maximum body size, in milliseconds.
src/main/java/org/jsoup/Connection.java:363
↓ 6 callersMethodnewAttribute
()
src/main/java/org/jsoup/parser/Token.java:56
↓ 6 callersMethodnoTracking
()
src/main/java/org/jsoup/parser/ParseErrorList.java:28
← previousnext →101–200 of 1,337, ranked by callers