Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Z 

A

a - Variable in class org.jsoup.select.Evaluator.CssNthEvaluator
 
Abbr - Class in com.overzealous.remark.convert
Handles abbr and acronym tags
Abbr() - Constructor for class com.overzealous.remark.convert.Abbr
 
abbreviations - Variable in class com.overzealous.remark.Options
If true, enable remarking abbreviations.
AbstractNodeHandler - Class in com.overzealous.remark.convert
Contains basic implementations for handling text nodes and ignored HTML elements.
AbstractNodeHandler() - Constructor for class com.overzealous.remark.convert.AbstractNodeHandler
 
absUrl(String) - Method in class org.jsoup.nodes.Node
Get an absolute URL from a URL attribute that may be relative (i.e.
absUrl(String) - Method in class org.jsoup.nodes.TextNode
 
addAll(Attributes) - Method in class org.jsoup.nodes.Attributes
Add all the attributes from the incoming set to this set.
addAttribute(String) - Method in class com.overzealous.remark.IgnoredHtmlElement
Adds a single to the list of allowed attributes.
addAttributes(String...) - Method in class com.overzealous.remark.IgnoredHtmlElement
Adds one or more attributes to the list of allowed attributes.
addAttributes(String, String...) - Method in class org.jsoup.safety.Whitelist
Add a list of allowed attributes to a tag.
addBlockNode(NodeHandler, String) - Method in class com.overzealous.remark.convert.DocumentConverter
Customize the processing for a node.
addBodyRow() - Method in class com.overzealous.remark.util.MarkdownTable
Creates a new body row, and returns it so it can have cells added to it.
addChildren(Node...) - Method in class org.jsoup.nodes.Node
 
addChildren(int, Node...) - Method in class org.jsoup.nodes.Node
 
addClass(String) - Method in class org.jsoup.nodes.Element
Add a class name to this element's class attribute.
addClass(String) - Method in class org.jsoup.select.Elements
Add the class name to every matched element's class attribute.
addElement(Element) - Method in class org.jsoup.nodes.FormElement
Add a form control element to this form.
addEnforcedAttribute(String, String, String) - Method in class org.jsoup.safety.Whitelist
Add an enforced attribute to a tag.
addFirst(Character) - Method in class org.jsoup.parser.TokenQueue
Add a character to the start of the queue (will be the next character retrieved).
addFirst(String) - Method in class org.jsoup.parser.TokenQueue
Add a string to the start of the queue.
addHeaderRow() - Method in class com.overzealous.remark.util.MarkdownTable
Creates a new header row, and returns it so it can have cells added to it.
addInlineNode(NodeHandler, String) - Method in class com.overzealous.remark.convert.DocumentConverter
Customize the processing for a node.
addLink(String, String, boolean) - Method in class com.overzealous.remark.convert.DocumentConverter
Adds a link to the link set, and returns the actual ID for the link.
addProtocols(String, String, String...) - Method in class org.jsoup.safety.Whitelist
Add allowed URL protocols for an element's URL attribute.
addTags(String...) - Method in class org.jsoup.safety.Whitelist
Add a list of allowed elements to a whitelist.
advance() - Method in class org.jsoup.parser.CharacterReader
Moves the current position by one.
advance() - Method in class org.jsoup.parser.TokenQueue
Drops the next character off the queue.
after(String) - Method in class org.jsoup.nodes.Element
Insert the specified HTML into the DOM after this element (as a following sibling).
after(Node) - Method in class org.jsoup.nodes.Element
Insert the specified node into the DOM after this node (as a following sibling).
after(String) - Method in class org.jsoup.nodes.Node
Insert the specified HTML into the DOM after this node (i.e.
after(Node) - Method in class org.jsoup.nodes.Node
Insert the specified node into the DOM after this node (i.e.
after(String) - Method in class org.jsoup.select.Elements
Insert the supplied HTML after each matched element's outer HTML.
align(String, int, int) - Static method in class com.overzealous.remark.util.StringUtils
Pads out a left-, right-, or center-aligned string using spaces up to the specified width.
align(String, int, char, int) - Static method in class com.overzealous.remark.util.StringUtils
Pads out a left-, right-, or center-aligned string using the specified character up to the specified width.
align(PrintWriter, String, int, int) - Static method in class com.overzealous.remark.util.StringUtils
Pads out a left-, right-, or center-aligned string using spaces up to the specified width.
align(PrintWriter, String, int, char, int) - Static method in class com.overzealous.remark.util.StringUtils
Pads out a left-, right-, or center-aligned string using the specified character up to the specified width.
ALIGN_CENTER - Static variable in class com.overzealous.remark.util.StringUtils
Represents centered alignment.
ALIGN_LEFT - Static variable in class com.overzealous.remark.util.StringUtils
Represents left alignment.
ALIGN_RIGHT - Static variable in class com.overzealous.remark.util.StringUtils
Represents right alignment.
AllElements() - Constructor for class org.jsoup.select.Evaluator.AllElements
 
Anchor - Class in com.overzealous.remark.convert
Handles anchor (a) tags, both links and named anchors.
Anchor() - Constructor for class com.overzealous.remark.convert.Anchor
 
append(String) - Method in class org.jsoup.nodes.Element
Add inner HTML to this element.
append(String) - Method in class org.jsoup.select.Elements
Add the supplied HTML to the end of each matched element's inner HTML.
appendChild(Node) - Method in class org.jsoup.nodes.Element
Add a node child node to this element.
appendElement(String) - Method in class org.jsoup.nodes.Element
Create a new element by tag name, and add it as the last child.
appendNormalisedWhitespace(StringBuilder, String, boolean) - Static method in class org.jsoup.helper.StringUtil
After normalizing the whitespace within a string, appends it to a string builder.
appendText(String) - Method in class org.jsoup.nodes.Element
Create and append a new TextNode to this element.
asList() - Method in class org.jsoup.nodes.Attributes
Get the attributes as a List, for iteration.
asString(Document) - Method in class org.jsoup.helper.W3CDom
Serialize a W3C document to a String.
attr(String, String) - Method in class org.jsoup.nodes.Element
Set an attribute value on this element.
attr(String, boolean) - Method in class org.jsoup.nodes.Element
Set a boolean attribute value on this element.
attr(String) - Method in class org.jsoup.nodes.Node
Get an attribute's value by its key.
attr(String, String) - Method in class org.jsoup.nodes.Node
Set an attribute (key=value).
attr(String) - Method in class org.jsoup.nodes.TextNode
 
attr(String, String) - Method in class org.jsoup.nodes.TextNode
 
attr(String) - Method in class org.jsoup.select.Elements
Get an attribute value from the first matched element that has the attribute.
attr(String, String) - Method in class org.jsoup.select.Elements
Set an attribute on all matched elements.
Attribute - Class in org.jsoup.nodes
A single key + value attribute.
Attribute(String, String) - Constructor for class org.jsoup.nodes.Attribute
Create a new attribute from unencoded (raw) key and value.
Attribute(String) - Constructor for class org.jsoup.select.Evaluator.Attribute
 
AttributeKeyPair(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeKeyPair
 
Attributes - Class in org.jsoup.nodes
The attributes of an Element.
Attributes() - Constructor for class org.jsoup.nodes.Attributes
 
attributes() - Method in class org.jsoup.nodes.Node
Get all of the element's attributes.
attributes() - Method in class org.jsoup.nodes.TextNode
 
AttributeStarting(String) - Constructor for class org.jsoup.select.Evaluator.AttributeStarting
 
AttributeWithValue(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValue
 
AttributeWithValueContaining(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValueContaining
 
AttributeWithValueEnding(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValueEnding
 
AttributeWithValueMatching(String, Pattern) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValueMatching
 
AttributeWithValueNot(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValueNot
 
AttributeWithValueStarting(String, String) - Constructor for class org.jsoup.select.Evaluator.AttributeWithValueStarting
 
autoLinks - Variable in class com.overzealous.remark.Options
If true, enable autoLinks.

B

b - Variable in class org.jsoup.select.Evaluator.CssNthEvaluator
 
baseUri() - Method in class org.jsoup.nodes.Node
Get the base URI of this node.
basic() - Static method in class org.jsoup.safety.Whitelist
This whitelist allows a fuller range of text nodes: a, b, blockquote, br, cite, code, dd, dl, dt, em, i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul, and appropriate attributes.
basicWithImages() - Static method in class org.jsoup.safety.Whitelist
This whitelist allows the same text tags as Whitelist.basic(), and also allows img tags, with appropriate attributes, with src pointing to http or https.
before(String) - Method in class org.jsoup.nodes.Element
Insert the specified HTML into the DOM before this element (as a preceding sibling).
before(Node) - Method in class org.jsoup.nodes.Element
Insert the specified node into the DOM before this node (as a preceding sibling).
before(String) - Method in class org.jsoup.nodes.Node
Insert the specified HTML into the DOM before this node (i.e.
before(Node) - Method in class org.jsoup.nodes.Node
Insert the specified node into the DOM before this node (i.e.
before(String) - Method in class org.jsoup.select.Elements
Insert the supplied HTML before each matched element's outer HTML.
BlockQuote - Class in com.overzealous.remark.convert
Handles blockquote tags
BlockQuote() - Constructor for class com.overzealous.remark.convert.BlockQuote
 
BlockWriter - Class in com.overzealous.remark.util
This is a customized subclass of BufferedWriter that handles working with Markdown block-level elements.
BlockWriter(Writer) - Constructor for class com.overzealous.remark.util.BlockWriter
 
BlockWriter(Writer, boolean) - Constructor for class com.overzealous.remark.util.BlockWriter
 
BlockWriter(OutputStream) - Constructor for class com.overzealous.remark.util.BlockWriter
 
BlockWriter(OutputStream, boolean) - Constructor for class com.overzealous.remark.util.BlockWriter
 
body() - Method in interface org.jsoup.Connection.Response
Get the body of the response as a plain string.
body() - Method in class org.jsoup.helper.HttpConnection.Response
 
body() - Method in class org.jsoup.nodes.Document
Accessor to the document's body element.
bodyAsBytes() - Method in interface org.jsoup.Connection.Response
Get the body of the response as an array of bytes.
bodyAsBytes() - Method in class org.jsoup.helper.HttpConnection.Response
 
BooleanAttribute - Class in org.jsoup.nodes
A boolean attribute that is written out without any value.
BooleanAttribute(String) - Constructor for class org.jsoup.nodes.BooleanAttribute
Create a new boolean attribute from unencoded (raw) key.
Break - Class in com.overzealous.remark.convert
Handles manual breaks (br)
Break() - Constructor for class com.overzealous.remark.convert.Break
 
BUFFER_SIZE - Static variable in class com.kamontat.utilities.URLReader
 
by(Converter.Type) - Static method in class com.kamontat.convert.Converter
get converter by Converter.Type

C

calculatePosition(Element, Element) - Method in class org.jsoup.select.Evaluator.CssNthEvaluator
 
calculatePosition(Element, Element) - Method in class org.jsoup.select.Evaluator.IsNthChild
 
calculatePosition(Element, Element) - Method in class org.jsoup.select.Evaluator.IsNthLastChild
 
calculatePosition(Element, Element) - Method in class org.jsoup.select.Evaluator.IsNthLastOfType
 
calculatePosition(Element, Element) - Method in class org.jsoup.select.Evaluator.IsNthOfType
 
call() - Method in class com.kamontat.utilities.URLReader
start the URL reader.
cancel(boolean) - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
canContainBlock() - Method in class org.jsoup.parser.Tag
Gets if this tag can contain block tags.
CharacterReader - Class in org.jsoup.parser
CharacterReader consumes tokens off a string.
CharacterReader(String) - Constructor for class org.jsoup.parser.CharacterReader
 
charset() - Method in interface org.jsoup.Connection.Response
Get the character set name of the response, derived from the content-type header.
charset(String) - Method in interface org.jsoup.Connection.Response
Set / override the response character set.
charset() - Method in class org.jsoup.helper.HttpConnection.Response
 
charset(String) - Method in class org.jsoup.helper.HttpConnection.Response
 
charset(Charset) - Method in class org.jsoup.nodes.Document
Sets the charset used in this document.
charset() - Method in class org.jsoup.nodes.Document
Returns the charset used in this document.
charset() - Method in class org.jsoup.nodes.Document.OutputSettings
Get the document's current output charset, which is used to control which characters are escaped when generating HTML (via the html() methods), and which are kept intact.
charset(Charset) - Method in class org.jsoup.nodes.Document.OutputSettings
Update the document's output charset.
charset(String) - Method in class org.jsoup.nodes.Document.OutputSettings
Update the document's output charset.
child(int) - Method in class org.jsoup.nodes.Element
Get a child element of this element, by its 0-based index number.
childNode(int) - Method in class org.jsoup.nodes.Node
Get a child node by its 0-based index.
childNodes() - Method in class org.jsoup.nodes.Node
Get this node's children.
childNodesAsArray() - Method in class org.jsoup.nodes.Node
 
childNodesCopy() - Method in class org.jsoup.nodes.Node
Returns a deep copy of this node's children.
childNodeSize() - Method in class org.jsoup.nodes.Node
Get the number of child nodes that this node holds.
children() - Method in class org.jsoup.nodes.Element
Get this element's child elements.
chompBalanced(char, char) - Method in class org.jsoup.parser.TokenQueue
Pulls a balanced string off the queue.
chompTo(String) - Method in class org.jsoup.parser.TokenQueue
Pulls a string off the queue (like consumeTo), and then pulls off the matched string (but does not return it).
chompToIgnoreCase(String) - Method in class org.jsoup.parser.TokenQueue
 
Class(String) - Constructor for class org.jsoup.select.Evaluator.Class
 
className() - Method in class org.jsoup.nodes.Element
Gets the literal value of this element's "class" attribute, which may include multiple class names, space separated.
classNames() - Method in class org.jsoup.nodes.Element
Get all of the element's class names.
classNames(Set<String>) - Method in class org.jsoup.nodes.Element
Set the element's class attribute to the supplied class names.
clean(Object) - Method in class com.overzealous.remark.convert.TextCleaner
Clean the given input text based on the original configuration Options.
clean(String, String, Whitelist) - Static method in class org.jsoup.Jsoup
Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
clean(String, Whitelist) - Static method in class org.jsoup.Jsoup
Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
clean(String, String, Whitelist, Document.OutputSettings) - Static method in class org.jsoup.Jsoup
Get safe HTML from untrusted input HTML, by parsing input HTML and filtering it through a white-list of permitted tags and attributes.
clean(Document) - Method in class org.jsoup.safety.Cleaner
Creates a new, clean document, from the original dirty document, containing only elements allowed by the whitelist.
cleanCode(Object) - Method in class com.overzealous.remark.convert.TextCleaner
Clean the given input text based on the original configuration Options.
Cleaner - Class in org.jsoup.safety
The whitelist based HTML cleaner.
Cleaner(Whitelist) - Constructor for class org.jsoup.safety.Cleaner
Create a new cleaner, that sanitizes documents using the supplied whitelist.
cleanInlineCode(Object) - Method in class com.overzealous.remark.convert.TextCleaner
Method to clean inline code, and, if necessary, add spaces to make sure that internal, leading, or trailing '`' characters don't break the inline code.
cleanUrl(String) - Method in class com.overzealous.remark.convert.TextCleaner
Handles escaping special characters in URLs to avoid issues when they are rendered out (ie: spaces, parentheses)
clone() - Method in class org.jsoup.nodes.Attribute
 
clone() - Method in class org.jsoup.nodes.Attributes
 
clone() - Method in class org.jsoup.nodes.Document
 
clone() - Method in class org.jsoup.nodes.Document.OutputSettings
 
clone() - Method in class org.jsoup.nodes.Element
 
clone() - Method in class org.jsoup.nodes.Node
Create a stand-alone, deep copy of this node, and all of its children.
clone() - Method in class org.jsoup.select.Elements
Creates a deep copy of these elements.
Codeblock - Class in com.overzealous.remark.convert
Handles preformatted sections (pre), renders them as code blocks.
Codeblock() - Constructor for class com.overzealous.remark.convert.Codeblock
 
codepointsForName(String, int[]) - Static method in class org.jsoup.nodes.Entities
 
collect(Evaluator, Element) - Static method in class org.jsoup.select.Collector
Build a list of elements, by visiting root and every descendant of root, and testing it against the evaluator.
Collector - Class in org.jsoup.select
Collects a list of elements that match the supplied criteria.
com.kamontat.constance - package com.kamontat.constance
 
com.kamontat.constants - package com.kamontat.constants
 
com.kamontat.convert - package com.kamontat.convert
 
com.kamontat.exception - package com.kamontat.exception
 
com.kamontat.object - package com.kamontat.object
 
com.kamontat.utilities - package com.kamontat.utilities
 
com.overzealous.remark - package com.overzealous.remark
The root package for the OverZealous Creations, LLC, Remark library.
com.overzealous.remark.convert - package com.overzealous.remark.convert
This package contains the classes that walk the Jsoup document and processConvert it into Markdown code.
com.overzealous.remark.util - package com.overzealous.remark.util
This package contains utility classes that assist the main parser in rendering Markdown output.
Comment - Class in org.jsoup.nodes
A comment node.
Comment(String, String) - Constructor for class org.jsoup.nodes.Comment
Create a new comment node.
compareTo(Delayed) - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
compareTo(Object) - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
connect(String) - Static method in class org.jsoup.helper.HttpConnection
 
connect(URL) - Static method in class org.jsoup.helper.HttpConnection
 
connect(String) - Static method in class org.jsoup.Jsoup
Creates a new Connection to a URL.
CONNECTION - Static variable in class com.kamontat.utilities.URLManager
default connection.
Connection - Interface in org.jsoup
A Connection provides a convenient interface to fetch content from the web, and parse them into Documents.
Connection.Base<T extends Connection.Base> - Interface in org.jsoup
Common methods for Requests and Responses
Connection.KeyVal - Interface in org.jsoup
A Key Value tuple.
Connection.Method - Enum in org.jsoup
GET and POST http methods.
Connection.Request - Interface in org.jsoup
Represents a HTTP request.
Connection.Response - Interface in org.jsoup
Represents a HTTP response.
consume() - Method in class org.jsoup.parser.TokenQueue
Consume one character off queue.
consume(String) - Method in class org.jsoup.parser.TokenQueue
Consumes the supplied sequence of the queue.
consumeAttributeKey() - Method in class org.jsoup.parser.TokenQueue
Consume an attribute key off the queue (letter, digit, -, _, :")
consumeCssIdentifier() - Method in class org.jsoup.parser.TokenQueue
Consume a CSS identifier (ID or class) off the queue (letter, digit, -, _) http://www.w3.org/TR/CSS2/syndata.html#value-def-identifier
consumeElementSelector() - Method in class org.jsoup.parser.TokenQueue
Consume a CSS element selector (tag name, but | instead of : for namespaces (or *| for wildcard namespace), to not conflict with :pseudo selects).
consumeTagName() - Method in class org.jsoup.parser.TokenQueue
Consume an tag name off the queue (word or :, _, -)
consumeTo(char) - Method in class org.jsoup.parser.CharacterReader
Reads characters up to the specific char.
consumeTo(String) - Method in class org.jsoup.parser.TokenQueue
Pulls a string off the queue, up to but exclusive of the match sequence, or to the queue running out.
consumeToAny(char...) - Method in class org.jsoup.parser.CharacterReader
Read characters until the first of any delimiters is found.
consumeToAny(String...) - Method in class org.jsoup.parser.TokenQueue
Consumes to the first sequence provided, or to the end of the queue.
consumeToIgnoreCase(String) - Method in class org.jsoup.parser.TokenQueue
 
consumeWhitespace() - Method in class org.jsoup.parser.TokenQueue
Pulls the next run of whitespace characters of the queue.
consumeWord() - Method in class org.jsoup.parser.TokenQueue
Retrieves the next run of word type (letter or digit) off the queue.
ContainsData(String) - Constructor for class org.jsoup.select.Evaluator.ContainsData
 
ContainsOwnText(String) - Constructor for class org.jsoup.select.Evaluator.ContainsOwnText
 
ContainsText(String) - Constructor for class org.jsoup.select.Evaluator.ContainsText
 
CONTENT_ENCODING - Static variable in class org.jsoup.helper.HttpConnection
 
ContentType - Enum in com.kamontat.constance
Information from MIME-Type
contentType() - Method in interface org.jsoup.Connection.Response
Get the response content type (e.g.
contentType() - Method in class org.jsoup.helper.HttpConnection.Response
 
ConversionException - Exception in com.kamontat.exception
To handle error that occurred when try to convert between html and markdown
ConversionException(String, Exception) - Constructor for exception com.kamontat.exception.ConversionException
 
ConversionException(String) - Constructor for exception com.kamontat.exception.ConversionException
 
convert(String) - Method in class com.kamontat.convert.Converter
convert String parameter to Result
convert(File) - Method in class com.kamontat.convert.Converter
convert File parameter to Result
convert(URL) - Method in class com.kamontat.convert.Converter
convert URL parameter to Result
convert(String) - Method in class com.kamontat.convert.Html2Md
 
convert(File) - Method in class com.kamontat.convert.Html2Md
 
convert(URL) - Method in class com.kamontat.convert.Html2Md
 
convert(String) - Method in class com.kamontat.convert.Md2Html
This will convert markdown syntax to html syntax.
convert(File) - Method in class com.kamontat.convert.Md2Html
convert file to string and using Md2Html.convert(String)
convert(URL) - Method in class com.kamontat.convert.Md2Html
convert url to string and using Md2Html.convert(String)
convert(Document, Writer) - Method in class com.overzealous.remark.convert.DocumentConverter
Convert a document to the given writer.
convert(Document, OutputStream) - Method in class com.overzealous.remark.convert.DocumentConverter
Convert a document to the given output stream.
convert(Document) - Method in class com.overzealous.remark.convert.DocumentConverter
Convert a document and return a string.
convert(URL, int) - Method in class com.overzealous.remark.Remark
Converts an HTML document retrieved from a URL to Markdown.
convert(File) - Method in class com.overzealous.remark.Remark
Converts an HTML file to Markdown.
convert(File, String) - Method in class com.overzealous.remark.Remark
Converts an HTML file to Markdown.
convert(File, String, String) - Method in class com.overzealous.remark.Remark
Converts an HTML file to Markdown.
convert(String) - Method in class com.overzealous.remark.Remark
Converts HTML in memory to Markdown.
convert(String, String) - Method in class com.overzealous.remark.Remark
Converts HTML in memory to Markdown.
convert(Document) - Method in class com.overzealous.remark.Remark
Converts an already-loaded JSoup Document to Markdown.
convert(Document, Document) - Method in class org.jsoup.helper.W3CDom
Converts a jsoup document into the provided W3C Document.
Converter - Class in com.kamontat.convert
Converter class to convert between html and markdown
create by Converter.by(Type)
Converter() - Constructor for class com.kamontat.convert.Converter
 
Converter.Type - Enum in com.kamontat.convert
 
convertFragment(String) - Method in class com.overzealous.remark.Remark
Converts an HTML body fragment to Markdown.
convertFragment(String, String) - Method in class com.overzealous.remark.Remark
Converts an HTML body fragment to Markdown.
convertTo(SizeUnit) - Method in class com.kamontat.object.Size
convert current unit to newUnit
convertTo(SizeUnitType) - Method in class com.kamontat.object.Size
convert current type to newType
ConvertUtil - Class in com.kamontat.utilities
Conversion utility (between HTML and MD)
ConvertUtil() - Constructor for class com.kamontat.utilities.ConvertUtil
 
cookie(String) - Method in interface org.jsoup.Connection.Base
Get a cookie value by name from this request/response.
cookie(String, String) - Method in interface org.jsoup.Connection.Base
Set a cookie in this request/response.
cookie(String, String) - Method in interface org.jsoup.Connection
Set a cookie to be sent in the request.
cookie(String, String) - Method in class org.jsoup.helper.HttpConnection
 
cookies() - Method in interface org.jsoup.Connection.Base
Retrieve all of the request/response cookies as a map
cookies(Map<String, String>) - Method in interface org.jsoup.Connection
Adds each of the supplied cookies to the request.
cookies(Map<String, String>) - Method in class org.jsoup.helper.HttpConnection
 
copyFile(String, String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
copy a file
copyFolder(String, String) - Static method in class com.kamontat.utilities.FilesUtil
copy a folder
copyTheFile(String, String, String) - Method in class com.kamontat.utilities.FilesUtil
copy a file from srcPath to dstPath
coverTag(String, String...) - Static method in class com.kamontat.utilities.HtmlUtil
cover html by tagNames by first element of tagName will be outermost.
create(String, String...) - Static method in class com.overzealous.remark.IgnoredHtmlElement
Utility method to quickly create a new element.
create() - Static method in class com.overzealous.remark.util.BlockWriter
Creates a new, empty BlockWriter with a StringWriter as the buffer.
create(int) - Static method in class com.overzealous.remark.util.BlockWriter
Creates a new, empty BlockWriter with a StringWriter as the buffer.
create(String, String) - Static method in class org.jsoup.helper.HttpConnection.KeyVal
 
create(String, String, InputStream) - Static method in class org.jsoup.helper.HttpConnection.KeyVal
 
createElement(String) - Method in class org.jsoup.nodes.Document
Create a new Element, with this document's base uri.
createFolders(String...) - Static method in class com.kamontat.utilities.FilesUtil
create multi-level directory
Example use: createFolders("/", "Users", "Power", "Main");
createFromEncoded(String, String) - Static method in class org.jsoup.nodes.Attribute
Create a new Attribute from an unencoded key and a HTML attribute encoded value.
createFromEncoded(String, String) - Static method in class org.jsoup.nodes.DataNode
Create a new DataNode from HTML encoded data.
createFromEncoded(String, String) - Static method in class org.jsoup.nodes.TextNode
Create a new TextNode from HTML encoded (aka escaped) data.
createShell(String) - Static method in class org.jsoup.nodes.Document
Create a valid, empty shell of a document, suitable for adding more elements to.
CssNthEvaluator(int, int) - Constructor for class org.jsoup.select.Evaluator.CssNthEvaluator
 
CssNthEvaluator(int) - Constructor for class org.jsoup.select.Evaluator.CssNthEvaluator
 
cssSelector() - Method in class org.jsoup.nodes.Element
Get a CSS selector that will uniquely select this element.
current() - Method in class org.jsoup.parser.CharacterReader
Get the char at the current position.

D

data(String, String) - Method in interface org.jsoup.Connection
Add a request data parameter.
data(String, String, InputStream) - Method in interface org.jsoup.Connection
Add an input stream as a request data parameter.
data(Collection<Connection.KeyVal>) - Method in interface org.jsoup.Connection
Adds all of the supplied data to the request data parameters
data(Map<String, String>) - Method in interface org.jsoup.Connection
Adds all of the supplied data to the request data parameters
data(String...) - Method in interface org.jsoup.Connection
Add a number of request data parameters.
data(String) - Method in interface org.jsoup.Connection
Get the data KeyVal for this key, if any
data(Connection.KeyVal) - Method in interface org.jsoup.Connection.Request
Add a data parameter to the request
data() - Method in interface org.jsoup.Connection.Request
Get all of the request's data parameters
data(String, String) - Method in class org.jsoup.helper.HttpConnection
 
data(String, String, InputStream) - Method in class org.jsoup.helper.HttpConnection
 
data(Map<String, String>) - Method in class org.jsoup.helper.HttpConnection
 
data(String...) - Method in class org.jsoup.helper.HttpConnection
 
data(Collection<Connection.KeyVal>) - Method in class org.jsoup.helper.HttpConnection
 
data(String) - Method in class org.jsoup.helper.HttpConnection
 
data(Connection.KeyVal) - Method in class org.jsoup.helper.HttpConnection.Request
 
data() - Method in class org.jsoup.helper.HttpConnection.Request
 
data() - Method in class org.jsoup.nodes.Element
Get the combined data of this element.
DataNode - Class in org.jsoup.nodes
A data node, for contents of style, script tags etc, where contents should not show in text().
DataNode(String, String) - Constructor for class org.jsoup.nodes.DataNode
Create a new DataNode.
dataNodes() - Method in class org.jsoup.nodes.Element
Get this element's child data nodes.
dataPrefix - Static variable in class org.jsoup.nodes.Attributes
 
dataset() - Method in class org.jsoup.nodes.Attributes
Retrieves a filtered view of attributes that are HTML5 custom data attributes; that is, attributes with keys starting with data-.
dataset() - Method in class org.jsoup.nodes.Element
Get this element's HTML5 custom data attributes.
DataUtil - Class in org.jsoup.helper
Internal static utilities for handling data.
dateToBOMCStringDate(Date) - Static method in class com.kamontat.utilities.DateUtil
return string value of specified date in format: yyyy-MM-ddTHH:mm:ss
dateToLongString(Date) - Static method in class com.kamontat.utilities.DateUtil
return time value of specified date in format: yyyy-MM-dd HH:mm:ss
dateToShortString(Date) - Static method in class com.kamontat.utilities.DateUtil
return date value only of specified date in format: yyyy-MM-dd
dateToString(Date) - Static method in class com.kamontat.utilities.DateUtil
return time value of specified date in format: yyyy-MM-dd HH:mm
dateToStringWithPattern(Date, String) - Static method in class com.kamontat.utilities.DateUtil
return time value of specified date
dateToTimeString(Date) - Static method in class com.kamontat.utilities.DateUtil
return time value only of specified date in format: HH:mm:ss
DateUtil - Class in com.kamontat.utilities
Date Utility
DateUtil() - Constructor for class com.kamontat.utilities.DateUtil
 
DEFAULT_ENCODING - Static variable in class com.kamontat.utilities.FilesUtil
 
DEFAULT_ROUNDING_MODE - Static variable in class com.kamontat.object.Size
default of rounding the number
DEFAULT_UA - Static variable in class org.jsoup.helper.HttpConnection
Many users would get caught by not setting a user-agent and therefore getting different responses on their desktop vs in jsoup, which would otherwise default to Java.
DefaultNodeHandler - Class in com.overzealous.remark.convert
Default handler for unknown top-level nodes.
DefaultNodeHandler() - Constructor for class com.overzealous.remark.convert.DefaultNodeHandler
 
definitionLists - Variable in class com.overzealous.remark.Options
If true, enable remarking definitions lists.
Definitions - Class in com.overzealous.remark.convert
Handles dl, dt, and dd elements
Definitions() - Constructor for class com.overzealous.remark.convert.Definitions
 
delAllFile(String) - Static method in class com.kamontat.utilities.FilesUtil
delete all files inside folder
delFile(String) - Static method in class com.kamontat.utilities.FilesUtil
delete file
delFolder(String) - Static method in class com.kamontat.utilities.FilesUtil
delete folder
DescendableLinkedList<E> - Class in org.jsoup.helper
Provides a descending iterator and other 1.6 methods to allow support on the 1.5 JRE.
DescendableLinkedList() - Constructor for class org.jsoup.helper.DescendableLinkedList
Create a new DescendableLinkedList.
descendingIterator() - Method in class org.jsoup.helper.DescendableLinkedList
Get an iterator that starts and the end of the list and works towards the start.
doBackground(Runnable) - Static method in class com.kamontat.utilities.ExecuteWorker
do run on background using SwingWorker
doBackground(Runnable, Runnable) - Static method in class com.kamontat.utilities.ExecuteWorker
do run on background using SwingWorker
doClone(Node) - Method in class org.jsoup.nodes.Node
 
Document - Class in org.jsoup.nodes
A HTML Document.
Document(String) - Constructor for class org.jsoup.nodes.Document
Create a new, empty Document.
Document.OutputSettings - Class in org.jsoup.nodes
A Document's output settings control the form of the text() and html() methods.
Document.OutputSettings.Syntax - Enum in org.jsoup.nodes
The output serialization syntax.
Document.QuirksMode - Enum in org.jsoup.nodes
 
DocumentConverter - Class in com.overzealous.remark.convert
The class that does the heavy lifting for converting a JSoup Document into valid Markdown
DocumentConverter(Options) - Constructor for class com.overzealous.remark.convert.DocumentConverter
Creates a DocumentConverted with the given options.
DocumentType - Class in org.jsoup.nodes
A <!DOCTYPE> node.
DocumentType(String, String, String, String) - Constructor for class org.jsoup.nodes.DocumentType
Create a new doctype element.
DocumentType(String, String, String, String, String) - Constructor for class org.jsoup.nodes.DocumentType
Create a new doctype element.
doInBackground() - Method in class com.kamontat.utilities.ReaderBackground

E

Element - Class in org.jsoup.nodes
A HTML element consists of a tag name, attributes, and child nodes (including text nodes and other elements).
Element(String) - Constructor for class org.jsoup.nodes.Element
Create a new, standalone element.
Element(Tag, String, Attributes) - Constructor for class org.jsoup.nodes.Element
Create a new, standalone Element.
Element(Tag, String) - Constructor for class org.jsoup.nodes.Element
Create a new Element from a tag and a base URI.
elements() - Method in class org.jsoup.nodes.FormElement
Get the list of form control elements associated with this form.
Elements - Class in org.jsoup.select
A list of Elements, with methods that act on every element in the list.
Elements() - Constructor for class org.jsoup.select.Elements
 
Elements(int) - Constructor for class org.jsoup.select.Elements
 
Elements(Collection<Element>) - Constructor for class org.jsoup.select.Elements
 
Elements(List<Element>) - Constructor for class org.jsoup.select.Elements
 
Elements(Element...) - Constructor for class org.jsoup.select.Elements
 
elementSiblingIndex() - Method in class org.jsoup.nodes.Element
Get the list index of this element in its element sibling list.
empty() - Method in class org.jsoup.nodes.Element
Remove all of the element's child nodes.
empty() - Method in class org.jsoup.select.Elements
Empty (remove all child nodes from) each matched element.
endBlock() - Method in class com.overzealous.remark.util.BlockWriter
Ends a block.
ensureChildNodes() - Method in class org.jsoup.nodes.Node
 
Entities - Class in org.jsoup.nodes
HTML entities, and escape routines.
Entities.EscapeMode - Enum in org.jsoup.nodes
 
eq(int) - Method in class org.jsoup.select.Elements
Get the nth matched element as an Elements object.
equals(Object) - Method in class com.overzealous.remark.IgnoredHtmlElement
 
equals(Object) - Method in class com.overzealous.remark.util.MarkdownTableCell
 
equals(Object) - Method in class org.jsoup.nodes.Attribute
 
equals(Object) - Method in class org.jsoup.nodes.Attributes
Checks if these attributes are equal to another set of attributes, by comparing the two sets
equals(Object) - Method in class org.jsoup.nodes.Node
Check if this node is the same instance of another (object identity test).
equals(Object) - Method in class org.jsoup.parser.Tag
 
escapeMode() - Method in class org.jsoup.nodes.Document.OutputSettings
Get the document's current HTML escape mode: base, which provides a limited set of named HTML entities and escapes other characters as numbered entities for maximum compatibility; or extended, which uses the complete set of HTML named entities.
escapeMode(Entities.EscapeMode) - Method in class org.jsoup.nodes.Document.OutputSettings
Set the document's escape mode, which determines how characters are escaped when the output character set does not support a given character:- using either a named or a numbered escape.
Evaluator - Class in org.jsoup.select
Evaluates that an element matches the selector.
Evaluator() - Constructor for class org.jsoup.select.Evaluator
 
Evaluator.AllElements - Class in org.jsoup.select
Evaluator for any / all element matching
Evaluator.Attribute - Class in org.jsoup.select
Evaluator for attribute name matching
Evaluator.AttributeKeyPair - Class in org.jsoup.select
Abstract evaluator for attribute name/value matching
Evaluator.AttributeStarting - Class in org.jsoup.select
Evaluator for attribute name prefix matching
Evaluator.AttributeWithValue - Class in org.jsoup.select
Evaluator for attribute name/value matching
Evaluator.AttributeWithValueContaining - Class in org.jsoup.select
Evaluator for attribute name/value matching (value containing)
Evaluator.AttributeWithValueEnding - Class in org.jsoup.select
Evaluator for attribute name/value matching (value ending)
Evaluator.AttributeWithValueMatching - Class in org.jsoup.select
Evaluator for attribute name/value matching (value regex matching)
Evaluator.AttributeWithValueNot - Class in org.jsoup.select
Evaluator for attribute name != value matching
Evaluator.AttributeWithValueStarting - Class in org.jsoup.select
Evaluator for attribute name/value matching (value prefix)
Evaluator.Class - Class in org.jsoup.select
Evaluator for element class
Evaluator.ContainsData - Class in org.jsoup.select
Evaluator for matching Element (and its descendants) data
Evaluator.ContainsOwnText - Class in org.jsoup.select
Evaluator for matching Element's own text
Evaluator.ContainsText - Class in org.jsoup.select
Evaluator for matching Element (and its descendants) text
Evaluator.CssNthEvaluator - Class in org.jsoup.select
 
Evaluator.Id - Class in org.jsoup.select
Evaluator for element id
Evaluator.IndexEquals - Class in org.jsoup.select
Evaluator for matching by sibling index number (e = idx)
Evaluator.IndexEvaluator - Class in org.jsoup.select
Abstract evaluator for sibling index matching
Evaluator.IndexGreaterThan - Class in org.jsoup.select
Evaluator for matching by sibling index number (e > idx)
Evaluator.IndexLessThan - Class in org.jsoup.select
Evaluator for matching by sibling index number (e < idx)
Evaluator.IsEmpty - Class in org.jsoup.select
 
Evaluator.IsFirstChild - Class in org.jsoup.select
Evaluator for matching the first sibling (css :first-child)
Evaluator.IsFirstOfType - Class in org.jsoup.select
 
Evaluator.IsLastChild - Class in org.jsoup.select
Evaluator for matching the last sibling (css :last-child)
Evaluator.IsLastOfType - Class in org.jsoup.select
 
Evaluator.IsNthChild - Class in org.jsoup.select
css-compatible Evaluator for :eq (css :nth-child)
Evaluator.IsNthLastChild - Class in org.jsoup.select
css pseudo class :nth-last-child)
Evaluator.IsNthLastOfType - Class in org.jsoup.select
 
Evaluator.IsNthOfType - Class in org.jsoup.select
css pseudo class nth-of-type
Evaluator.IsOnlyChild - Class in org.jsoup.select
 
Evaluator.IsOnlyOfType - Class in org.jsoup.select
 
Evaluator.IsRoot - Class in org.jsoup.select
css3 pseudo-class :root
Evaluator.Matches - Class in org.jsoup.select
Evaluator for matching Element (and its descendants) text with regex
Evaluator.MatchesOwn - Class in org.jsoup.select
Evaluator for matching Element's own text with regex
Evaluator.Tag - Class in org.jsoup.select
Evaluator for tag name
Evaluator.TagEndsWith - Class in org.jsoup.select
Evaluator for tag name that ends with
execute(Runnable) - Method in class com.kamontat.utilities.ExecuteWorker
To execute method Runnable.run() in the background
execute(Callable<T>) - Method in class com.kamontat.utilities.ExecuteWorker
To execute method Runnable.run() in the background
execute() - Method in interface org.jsoup.Connection
Execute the request.
execute() - Method in class org.jsoup.helper.HttpConnection
 
executeAndWaitAll(Callable<T>...) - Method in class com.kamontat.utilities.ExecuteWorker
execute the tasks and wait until all task was successfully
executeAndWaitAll(Runnable...) - Method in class com.kamontat.utilities.ExecuteWorker
executeAndWaitAny(Callable<T>...) - Method in class com.kamontat.utilities.ExecuteWorker
execute the tasks and wait until some of task was successfully (require only one task and method will done)
executeAndWaitAny(Runnable...) - Method in class com.kamontat.utilities.ExecuteWorker
ExecuteWorker - Class in com.kamontat.utilities
Execute some very very slow code in some way, that make java code much more Asynchronous programming
Meaning: if you want to run some code in background or want to wait until the code been finished.
ExecuteWorker(ExecutorService) - Constructor for class com.kamontat.utilities.ExecuteWorker
create multi-thread service.
ExecuteWorker.ScheduleFutureImp - Class in com.kamontat.utilities
This class implemented because I need the easy way to manage the ScheduledFuture
This class have new method call ExecuteWorker.ScheduleFutureImp.waitAndDone() so that program will wait until program done

F

factory - Variable in class org.jsoup.helper.W3CDom
 
fail(String) - Static method in class org.jsoup.helper.Validate
Cause a failure.
fencedCodeBlocks - Variable in class com.overzealous.remark.Options
Configures how to handle code blocks.
fencedCodeBlocksWidth - Variable in class com.overzealous.remark.Options
Number of times to repeat the fencedCodeBlock character.
FilesUtil - Class in com.kamontat.utilities
Files Utility
FilesUtil() - Constructor for class com.kamontat.utilities.FilesUtil
 
find(int) - Static method in enum com.overzealous.remark.util.MarkdownTable.Alignment
 
first() - Method in class org.jsoup.select.Elements
Get the first matched element.
firstElementSibling() - Method in class org.jsoup.nodes.Element
Gets the first element sibling of this element.
fixPegdownStrongEmphasisInLinks - Variable in class com.overzealous.remark.Options
This is a very specific fix for a very specific bug.
followRedirects(boolean) - Method in interface org.jsoup.Connection
Configures the connection to (not) follow server redirects.
followRedirects() - Method in interface org.jsoup.Connection.Request
Get the current followRedirects configuration.
followRedirects(boolean) - Method in interface org.jsoup.Connection.Request
Configures the request to (not) follow server redirects.
followRedirects(boolean) - Method in class org.jsoup.helper.HttpConnection
 
followRedirects() - Method in class org.jsoup.helper.HttpConnection.Request
 
followRedirects(boolean) - Method in class org.jsoup.helper.HttpConnection.Request
 
forceShutdown() - Method in class com.kamontat.utilities.ExecuteWorker
force shutdown and return the task that not execute successfully.
formatAsBlock() - Method in class org.jsoup.parser.Tag
Gets if this tag should be formatted as a block (or as inline)
formData() - Method in class org.jsoup.nodes.FormElement
Get the data that this form submits.
FormElement - Class in org.jsoup.nodes
A HTML Form Element provides ready access to the form fields/controls that are associated with it.
FormElement(Tag, String, Attributes) - Constructor for class org.jsoup.nodes.FormElement
Create a new, standalone form element.
forms() - Method in class org.jsoup.select.Elements
Get the FormElement forms from the selected elements, if any.
fromJsoup(Document) - Method in class org.jsoup.helper.W3CDom
Convert a jsoup Document to a W3C Document.

G

get(Type, ContentType) - Static method in enum com.kamontat.constance.ContentType
 
get() - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
this get will return 2 thing CancellationException - if the task got cancel (ExecuteWorker.schedule(Runnable, int, int, int, TimeUnit, boolean)) Null - if have another exception or Future.get() return object successfully
get(long, TimeUnit) - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
get() - Method in interface org.jsoup.Connection
Execute the request as a GET, and parse the result.
get() - Method in class org.jsoup.helper.HttpConnection
 
get(String) - Method in class org.jsoup.nodes.Attributes
Get an attribute value by key.
getAlignment() - Method in class com.overzealous.remark.util.MarkdownTableCell
Gets the text-alignment of this cell
getAllElements() - Method in class org.jsoup.nodes.Element
Find all elements under this element (including self, and children of children).
getAllFileAbsPath(String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
get all absolute path file in the folder
getAllFileNames(String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
get all abs of file in the folder
getAllFiles(String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
get all files in a folder (Only file)
getAllFiles(String, String) - Static method in class com.kamontat.utilities.FilesUtil
add all files that matched with extension
FilesUtil.getAllFiles(String, String, boolean)with boolean is true
getAllFiles(String, String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
get all file from the folder
getAttributes() - Method in class com.overzealous.remark.IgnoredHtmlElement
Gets all the attributes that should be left on this tag.
getBlockDepth() - Method in class com.overzealous.remark.util.BlockWriter
Returns how deep the number of blocks is.
getBlockNodes() - Method in class com.overzealous.remark.convert.DocumentConverter
 
getBuffer() - Method in class com.overzealous.remark.util.BlockWriter
If this object has been created using BlockWriter.create(), returns the StringWriter output buffer.
getByName(String) - Static method in class org.jsoup.nodes.Entities
Get the character(s) represented by the named entity
getBytesRead() - Method in class com.kamontat.utilities.URLReader
Get the number of bytes downloaded so far.
getCharacterByName(String) - Static method in class org.jsoup.nodes.Entities
Deprecated.
does not support characters outside the BMP or multiple character names
getCleaner() - Method in class com.overzealous.remark.convert.DocumentConverter
 
getColspan() - Method in class com.overzealous.remark.util.MarkdownTableCell
 
getConnection(Class<T>) - Method in class com.kamontat.utilities.URLManager
get connection
getContent() - Method in class com.kamontat.utilities.URLManager
get all content inside url
getContents() - Method in class com.overzealous.remark.util.MarkdownTableCell
 
getConverter() - Method in class com.overzealous.remark.Remark
Provides access to the DocumentConverter for customization.
getCopy() - Method in class com.overzealous.remark.Options
 
getCurrentTimestamp() - Static method in class com.kamontat.utilities.DateUtil
return unix timestamp of now
getData() - Method in class org.jsoup.nodes.Comment
Get the contents of the comment.
getDate(Date, int, int) - Static method in class com.kamontat.utilities.DateUtil
return date value with specified field value
getDelay(TimeUnit) - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
getDir() - Method in enum com.overzealous.remark.util.MarkdownTable.Alignment
 
getElementById(String) - Method in class org.jsoup.nodes.Element
Find an element by ID, including or under this element.
getElementsByAttribute(String) - Method in class org.jsoup.nodes.Element
Find elements that have a named attribute set.
getElementsByAttributeStarting(String) - Method in class org.jsoup.nodes.Element
Find elements that have an attribute name starting with the supplied prefix.
getElementsByAttributeValue(String, String) - Method in class org.jsoup.nodes.Element
Find elements that have an attribute with the specific value.
getElementsByAttributeValueContaining(String, String) - Method in class org.jsoup.nodes.Element
Find elements that have attributes whose value contains the match string.
getElementsByAttributeValueEnding(String, String) - Method in class org.jsoup.nodes.Element
Find elements that have attributes that end with the value suffix.
getElementsByAttributeValueMatching(String, Pattern) - Method in class org.jsoup.nodes.Element
Find elements that have attributes whose values match the supplied regular expression.
getElementsByAttributeValueMatching(String, String) - Method in class org.jsoup.nodes.Element
Find elements that have attributes whose values match the supplied regular expression.
getElementsByAttributeValueNot(String, String) - Method in class org.jsoup.nodes.Element
Find elements that either do not have this attribute, or have it with a different value.
getElementsByAttributeValueStarting(String, String) - Method in class org.jsoup.nodes.Element
Find elements that have attributes that start with the value prefix.
getElementsByClass(String) - Method in class org.jsoup.nodes.Element
Find elements that have this class, including or under this element.
getElementsByIndexEquals(int) - Method in class org.jsoup.nodes.Element
Find elements whose sibling index is equal to the supplied index.
getElementsByIndexGreaterThan(int) - Method in class org.jsoup.nodes.Element
Find elements whose sibling index is greater than the supplied index.
getElementsByIndexLessThan(int) - Method in class org.jsoup.nodes.Element
Find elements whose sibling index is less than the supplied index.
getElementsByTag(String) - Method in class org.jsoup.nodes.Element
Finds elements, including and recursively under this element, with the specified tag name.
getElementsContainingOwnText(String) - Method in class org.jsoup.nodes.Element
Find elements that directly contain the specified string.
getElementsContainingText(String) - Method in class org.jsoup.nodes.Element
Find elements that contain the specified string.
getElementsMatchingOwnText(Pattern) - Method in class org.jsoup.nodes.Element
Find elements whose own text matches the supplied regular expression.
getElementsMatchingOwnText(String) - Method in class org.jsoup.nodes.Element
Find elements whose text matches the supplied regular expression.
getElementsMatchingText(Pattern) - Method in class org.jsoup.nodes.Element
Find elements whose text matches the supplied regular expression.
getElementsMatchingText(String) - Method in class org.jsoup.nodes.Element
Find elements whose text matches the supplied regular expression.
getErrorMessage() - Method in class org.jsoup.parser.ParseError
Retrieve the error message.
getErrors() - Method in class org.jsoup.parser.Parser
Retrieve the parse errors, if any, from the last parse.
getExtension(String) - Static method in class com.kamontat.utilities.FilesUtil
get file extension/suffix (without dot)
Example: html, txt, pdf, etc.
getFencedCodeBlocks() - Method in class com.overzealous.remark.Options
Always returns a non-null setting for FencedCodeBlocks
getFileFromRoot(String...) - Static method in class com.kamontat.utilities.FilesUtil
get path start from current project path
getFileName(String) - Static method in class com.kamontat.utilities.FilesUtil
get file name from path
getHeader() - Method in class com.kamontat.utilities.URLManager
get all header fields
getHtmlInTag(String, String) - Static method in class com.kamontat.utilities.HtmlUtil
get html tag include tag too
getIgnoreCase(String) - Method in class org.jsoup.nodes.Attributes
Get an attribute's value by case-insensitive key
getIgnoredHtmlElements() - Method in class com.overzealous.remark.Options
Always returns a non-null setting for IgnoredHtmlElements
getInlineContent(NodeHandler, Element) - Method in class com.overzealous.remark.convert.DocumentConverter
Recursively processes child nodes and returns the potential output string.
getInlineContent(NodeHandler, Element, boolean) - Method in class com.overzealous.remark.convert.DocumentConverter
Recursively processes child nodes and returns the potential output string.
getInlineNodes() - Method in class com.overzealous.remark.convert.DocumentConverter
 
getInputStream() - Method in class com.kamontat.utilities.URLManager
 
getInstance() - Static method in class com.overzealous.remark.convert.DefaultNodeHandler
 
getInstance() - Static method in class com.overzealous.remark.convert.NodeRemover
 
getInWordEmphasis() - Method in class com.overzealous.remark.Options
Always returns a non-null setting for InWordEmphasis
getKey() - Method in class com.kamontat.utilities.RequestProp
 
getKey() - Method in class org.jsoup.nodes.Attribute
Get the attribute key.
getMimeType() - Method in exception org.jsoup.UnsupportedMimeTypeException
 
getMonthFirstDay(String) - Static method in class com.kamontat.utilities.DateUtil
return the first day of the date's month of specified string value in format: yyyy-MM
getMonthLastDay(String) - Static method in class com.kamontat.utilities.DateUtil
return the last day of the date's month of specified string value in format: yyyy-MM
getName() - Method in class org.jsoup.parser.Tag
Get this tag's name.
getNameWithoutExtension(String) - Static method in class com.kamontat.utilities.FilesUtil
get file name without extension
example: test.txt will return test
getNow() - Static method in class com.kamontat.utilities.DateUtil
return date value of now
getNowDate() - Static method in class com.kamontat.utilities.DateUtil
return current date value in format: yyyy-MM-dd
getNowTime() - Static method in class com.kamontat.utilities.DateUtil
return current time value in format: yyyy-MM-dd HH:mm:ss:sss
getNumberOfColumns() - Method in class com.overzealous.remark.util.MarkdownTable
Returns the total number of columns in this table.
getOffMinutes(long) - Static method in class com.kamontat.utilities.DateUtil
return the time difference from a specified time to now in minutes
getOffMinutes(long, long) - Static method in class com.kamontat.utilities.DateUtil
return the time difference from two specified time
getOptions() - Method in class com.overzealous.remark.convert.DocumentConverter
 
getOutput() - Method in class com.overzealous.remark.convert.DocumentConverter
 
getOutputFile() - Method in class com.kamontat.utilities.URLReader
Get actual name of the output file.
getOutputStream(String) - Static method in class com.kamontat.utilities.FilesUtil
get output file, if file not exist automatic create file and if it's still not exist return null
getPlainText(Element) - Method in class org.jsoup.examples.HtmlToPlainText
Format an Element to plain-text
getPosition() - Method in class org.jsoup.parser.ParseError
Retrieves the offset of the error.
getPrependNewlineString() - Method in class com.overzealous.remark.util.BlockWriter
Returns the string being prepended to new lines, if set.
getProtocol() - Method in enum com.kamontat.constance.Protocol
Format: http:// or https://
getProtocol(URL) - Static method in enum com.kamontat.constance.Protocol
get protocol from link
getProtocol(String) - Static method in enum com.kamontat.constance.Protocol
check contains protocol with input string
getProtocol() - Method in class com.kamontat.utilities.URLManager
 
getPseudoClass() - Method in class org.jsoup.select.Evaluator.CssNthEvaluator
 
getPseudoClass() - Method in class org.jsoup.select.Evaluator.IsNthChild
 
getPseudoClass() - Method in class org.jsoup.select.Evaluator.IsNthLastChild
 
getPseudoClass() - Method in class org.jsoup.select.Evaluator.IsNthLastOfType
 
getPseudoClass() - Method in class org.jsoup.select.Evaluator.IsNthOfType
 
getSeparatorCharacter() - Method in enum com.overzealous.remark.Options.FencedCodeBlocks
Returns the separator character to use.
getSize() - Method in enum com.kamontat.constants.SizeUnitType
get default multiply number
getSize() - Method in class com.kamontat.object.Size
 
getSize(long, SizeUnit, SizeUnitType) - Static method in class com.kamontat.utilities.SizeUtil
get file size
getSize(long, SizeUnit) - Static method in class com.kamontat.utilities.SizeUtil
getSizeAsString(int) - Method in class com.kamontat.object.Size
get size in string format
getSizeInt() - Method in class com.kamontat.object.Size
get size with int value.
getSizeLong() - Method in class com.kamontat.object.Size
get size with long value.
getSpecifyInputFromConnection(RequestMethod, String, RequestProp...) - Method in class com.kamontat.utilities.URLManager
 
getStatusCode() - Method in exception org.jsoup.HttpStatusException
 
getString() - Method in enum com.kamontat.constants.SizeUnit
get unit, by type that insert
getString(SizeUnitType) - Method in enum com.kamontat.constants.SizeUnit
get string of specify input type
getStringToTimestamp(String) - Static method in class com.kamontat.utilities.DateUtil
return unix timestamp of specified string value in format: yyyy-MM-dd HH:mm:ss
getTables() - Method in class com.overzealous.remark.Options
Always returns a non-null setting for Tables
getTagName() - Method in class com.overzealous.remark.IgnoredHtmlElement
Returns the tagname for this object.
getTimestamp(String) - Static method in class com.kamontat.utilities.DateUtil
return unix timestamp of specified string value in format: yyyy-MM-dd
getTotalByte() - Method in class com.kamontat.utilities.URLReader
 
getTreeBuilder() - Method in class org.jsoup.parser.Parser
Get the TreeBuilder currently in use.
getType() - Method in enum com.kamontat.constants.SizeUnit
 
getType() - Method in class com.kamontat.object.Size
 
getUnit() - Method in class com.kamontat.object.Size
 
getUrl(URL) - Static method in class com.kamontat.utilities.URLManager
get url utility
getUrl(String) - Static method in class com.kamontat.utilities.URLManager
get url utility
getUrl(Protocol, String) - Static method in class com.kamontat.utilities.URLManager
get url utility
getUrl() - Method in class com.kamontat.utilities.URLManager
 
getUrl() - Method in exception org.jsoup.HttpStatusException
 
getUrl() - Method in exception org.jsoup.UnsupportedMimeTypeException
 
getURLFilename() - Method in class com.kamontat.utilities.URLManager
get file name
Example: https://xyz.com/re/as/fe/test.txt
the return will be "test.txt"
getURLSize() - Method in class com.kamontat.utilities.URLManager
get content length/size
getValue() - Method in class com.kamontat.utilities.RequestProp
 
getValue() - Method in class org.jsoup.nodes.Attribute
Get the attribute value.
getWeekDay(String, int) - Static method in class com.kamontat.utilities.DateUtil
return date's weekday value of specified string value in format: yyyy-MM-dd Date first = DateUtil.getMonday(today,Calendar.SUNDAY); Date last = DateUtil.getMonday(today,Calendar.SATURDAY);
getWholeData() - Method in class org.jsoup.nodes.DataNode
Get the data contents of this node.
getWholeDeclaration() - Method in class org.jsoup.nodes.XmlDeclaration
Get the unencoded XML declaration.
getWholeText() - Method in class org.jsoup.nodes.TextNode
Get the (unencoded) text of this text node, including any newlines and spaces present in the original.
getWidth() - Method in class com.overzealous.remark.util.MarkdownTableCell
Returns the number of characters needed to show this column.
getYearFirstDay(String) - Static method in class com.kamontat.utilities.DateUtil
return the first day of the date's year of specified string value in format: yyyy
getYearLastDay(String) - Static method in class com.kamontat.utilities.DateUtil
return the last day of the date's year of specified string value in format: yyyy
github() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with github-flavored Markdown.

H

handleIgnoredHTMLElement(Element, DocumentConverter) - Method in class com.overzealous.remark.convert.AbstractNodeHandler
Handle an ignored HTMLElement.
handleIgnoredHTMLElement(Element, DocumentConverter) - Method in interface com.overzealous.remark.convert.NodeHandler
Handle an ignored HTMLElement.
handleIgnoredHTMLElement(Element, DocumentConverter) - Method in class com.overzealous.remark.convert.NodeRemover
 
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Abbr
Handles abbreviations.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Anchor
Creates a link reference, and renders the correct output.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.BlockQuote
Processes a quoted section.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Break
Renders out forced linebreaks.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Codeblock
Converts a pre-formatted block of code.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.DefaultNodeHandler
For the default state element, the nodes are simply ignored, recursing as necessary.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Definitions
 
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Header
Renders a header node (h1..h6).
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.HorizontalRule
 
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Image
Creates a link reference to an image, and renders the correct output.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.InlineCode
Renders inline-styled code.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.InlineStyle
Renders inline styling (bold, italics) for the given tag.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.List
 
handleNode(NodeHandler, Element, DocumentConverter) - Method in interface com.overzealous.remark.convert.NodeHandler
Handles an HTML Element node.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.NodeRemover
 
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Paragraph
Creates a standard text block, then walks down over inline nodes.
handleNode(NodeHandler, Element, DocumentConverter) - Method in class com.overzealous.remark.convert.Table
 
handleTextNode(TextNode, DocumentConverter) - Method in class com.overzealous.remark.convert.AbstractNodeHandler
Handle a child text node.
handleTextNode(TextNode, DocumentConverter) - Method in class com.overzealous.remark.convert.InlineStyle
 
handleTextNode(TextNode, DocumentConverter) - Method in interface com.overzealous.remark.convert.NodeHandler
Handle a child text node.
handleTextNode(TextNode, DocumentConverter) - Method in class com.overzealous.remark.convert.NodeRemover
 
hardwraps - Variable in class com.overzealous.remark.Options
If true, <br/>s are replaced with a simple linebreak.
hasAttr(String) - Method in class org.jsoup.nodes.Node
Test if this element has an attribute.
hasAttr(String) - Method in class org.jsoup.nodes.TextNode
 
hasAttr(String) - Method in class org.jsoup.select.Elements
Checks if any of the matched elements have this attribute set.
hasBody() - Method in enum org.jsoup.Connection.Method
Check if this HTTP method has/needs a request body
hasClass(String) - Method in class org.jsoup.nodes.Element
Tests if this element has a class.
hasClass(String) - Method in class org.jsoup.select.Elements
Determine if any of the matched elements have this class name set in their class attribute.
hasCookie(String) - Method in interface org.jsoup.Connection.Base
Check if a cookie is present
hashCode() - Method in class com.overzealous.remark.IgnoredHtmlElement
 
hashCode() - Method in class com.overzealous.remark.util.MarkdownTableCell
 
hashCode() - Method in class org.jsoup.nodes.Attribute
 
hashCode() - Method in class org.jsoup.nodes.Attributes
Calculates the hashcode of these attributes, by iterating all attributes and summing their hashcodes.
hashCode() - Method in class org.jsoup.parser.Tag
 
hasHeader(String) - Method in interface org.jsoup.Connection.Base
Check if a header is present
hasHeaderWithValue(String, String) - Method in interface org.jsoup.Connection.Base
Check if a header is present, with the given value
hasInputStream() - Method in interface org.jsoup.Connection.KeyVal
Does this keyval have an input stream?
hasInputStream() - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
hasKey(String) - Method in class org.jsoup.nodes.Attributes
Tests if these attributes contain an attribute with this key.
hasKeyIgnoreCase(String) - Method in class org.jsoup.nodes.Attributes
Tests if these attributes contain an attribute with this key.
hasSameValue(Object) - Method in class org.jsoup.nodes.Node
Check if this node is has the same content as another node.
hasText() - Method in class org.jsoup.nodes.Element
Test if this element has any text content (that is not just whitespace).
hasText() - Method in class org.jsoup.select.Elements
 
head(Node, int) - Method in class org.jsoup.helper.W3CDom.W3CBuilder
 
head() - Method in class org.jsoup.nodes.Document
Accessor to the document's head element.
head(Node, int) - Method in interface org.jsoup.select.NodeVisitor
Callback for when a node is first visited.
Header - Class in com.overzealous.remark.convert
Handles header nodes (h1 through h6)
Header() - Constructor for class com.overzealous.remark.convert.Header
 
header(String) - Method in interface org.jsoup.Connection.Base
Get the value of a header.
header(String, String) - Method in interface org.jsoup.Connection.Base
Set a header.
header(String, String) - Method in interface org.jsoup.Connection
Set a request header.
header(String, String) - Method in class org.jsoup.helper.HttpConnection
 
headerIds - Variable in class com.overzealous.remark.Options
If true, enable remarking header IDs.
Headers - Enum in com.kamontat.constance
Learn more at HTTP-Header
headers() - Method in interface org.jsoup.Connection.Base
Retrieve all of the request/response headers as a map
headers(Map<String, String>) - Method in interface org.jsoup.Connection
Adds each of the supplied headers to the request.
headers(Map<String, String>) - Method in class org.jsoup.helper.HttpConnection
 
HorizontalRule - Class in com.overzealous.remark.convert
Handles a simple hr tag
HorizontalRule() - Constructor for class com.overzealous.remark.convert.HorizontalRule
 
html() - Method in class org.jsoup.nodes.Attribute
Get the HTML representation of this attribute; e.g.
html(Appendable, Document.OutputSettings) - Method in class org.jsoup.nodes.Attribute
 
html() - Method in class org.jsoup.nodes.Attributes
Get the HTML representation of these attributes.
html() - Method in class org.jsoup.nodes.Element
Retrieves the element's inner HTML.
html(T) - Method in class org.jsoup.nodes.Element
Write this node and its children to the given Appendable.
html(String) - Method in class org.jsoup.nodes.Element
Set this element's inner HTML.
html(T) - Method in class org.jsoup.nodes.Node
Write this node and its children to the given Appendable.
html() - Method in class org.jsoup.select.Elements
Get the combined inner HTML of all matched elements.
html(String) - Method in class org.jsoup.select.Elements
Set the inner HTML of each matched element.
Html2Md - Class in com.kamontat.convert
 
Html2Md(Options) - Constructor for class com.kamontat.convert.Html2Md
 
htmlDefault - Static variable in class org.jsoup.parser.ParseSettings
HTML default settings: both tag and attribute names are lower-cased during parsing.
htmlParser() - Static method in class org.jsoup.parser.Parser
Create a new HTML parser.
htmlToHexoMd(String, String, String) - Static method in class com.kamontat.utilities.ConvertUtil
change html to md in Hexo format
htmlToJekyllMd(String, String, String) - Static method in class com.kamontat.utilities.ConvertUtil
change html to md in Jekyll format
HtmlToPlainText - Class in org.jsoup.examples
HTML to plain-text.
HtmlToPlainText() - Constructor for class org.jsoup.examples.HtmlToPlainText
 
HtmlTreeBuilder - Class in org.jsoup.parser
HTML Tree Builder; creates a DOM from Tokens.
HtmlUtil - Class in com.kamontat.utilities
html conversion by Jsoup library
All method is static method and The output, can managing by HtmlUtil.newOutputSetting(Document.OutputSettings)
HtmlUtil() - Constructor for class com.kamontat.utilities.HtmlUtil
 
HTTP_CONNECTION - Static variable in class com.kamontat.utilities.URLManager
http connection.
HttpConnection - Class in org.jsoup.helper
Implementation of Connection.
HttpConnection.KeyVal - Class in org.jsoup.helper
 
HttpConnection.Request - Class in org.jsoup.helper
 
HttpConnection.Response - Class in org.jsoup.helper
 
HTTPS_CONNECTION - Static variable in class com.kamontat.utilities.URLManager
https connection.
HttpStatusException - Exception in org.jsoup
Signals that a HTTP request resulted in a not OK HTTP response.
HttpStatusException(String, int, String) - Constructor for exception org.jsoup.HttpStatusException
 

I

id() - Method in class org.jsoup.nodes.Element
Get the id attribute of this element.
Id(String) - Constructor for class org.jsoup.select.Evaluator.Id
 
ignoreContentType(boolean) - Method in interface org.jsoup.Connection
Ignore the document's Content-Type when parsing the response.
ignoreContentType() - Method in interface org.jsoup.Connection.Request
Get the current ignoreContentType configuration.
ignoreContentType(boolean) - Method in interface org.jsoup.Connection.Request
Configures the request to ignore the Content-Type of the response.
ignoreContentType(boolean) - Method in class org.jsoup.helper.HttpConnection
 
ignoreContentType() - Method in class org.jsoup.helper.HttpConnection.Request
 
ignoreContentType(boolean) - Method in class org.jsoup.helper.HttpConnection.Request
 
IgnoredHtmlElement - Class in com.overzealous.remark
Provides a standard class to note which HTML elements should be left in the final output.
IgnoredHtmlElement(String) - Constructor for class com.overzealous.remark.IgnoredHtmlElement
Create a new IgnoredHtmlElement.
ignoredHtmlElements - Variable in class com.overzealous.remark.Options
Allows the addition of extra HTML tags that can be left in the output.
ignoreHttpErrors(boolean) - Method in interface org.jsoup.Connection
Configures the connection to not throw exceptions when a HTTP error occurs.
ignoreHttpErrors() - Method in interface org.jsoup.Connection.Request
Get the current ignoreHttpErrors configuration.
ignoreHttpErrors(boolean) - Method in interface org.jsoup.Connection.Request
Configures the request to ignore HTTP errors in the response.
ignoreHttpErrors(boolean) - Method in class org.jsoup.helper.HttpConnection
 
ignoreHttpErrors() - Method in class org.jsoup.helper.HttpConnection.Request
 
ignoreHttpErrors(boolean) - Method in class org.jsoup.helper.HttpConnection.Request
 
Image - Class in com.overzealous.remark.convert
Handles img tags.
Image() - Constructor for class com.overzealous.remark.convert.Image
 
in(String, String...) - Static method in class org.jsoup.helper.StringUtil
 
indent(Appendable, int, Document.OutputSettings) - Method in class org.jsoup.nodes.Node
 
indentAmount() - Method in class org.jsoup.nodes.Document.OutputSettings
Get the current tag indent amount, used when pretty printing.
indentAmount(int) - Method in class org.jsoup.nodes.Document.OutputSettings
Set the indent amount for pretty printing
IndexEquals(int) - Constructor for class org.jsoup.select.Evaluator.IndexEquals
 
IndexEvaluator(int) - Constructor for class org.jsoup.select.Evaluator.IndexEvaluator
 
IndexGreaterThan(int) - Constructor for class org.jsoup.select.Evaluator.IndexGreaterThan
 
IndexLessThan(int) - Constructor for class org.jsoup.select.Evaluator.IndexLessThan
 
initialiseParse(String, String, ParseErrorList, ParseSettings) - Method in class org.jsoup.parser.XmlTreeBuilder
 
InlineCode - Class in com.overzealous.remark.convert
Handles inline fixed-width code (code, tt) tags.
InlineCode() - Constructor for class com.overzealous.remark.convert.InlineCode
 
inlineLinks - Variable in class com.overzealous.remark.Options
If true, place the URLs for links inline.
InlineStyle - Class in com.overzealous.remark.convert
Handles various inline styling (italics and bold), such as em, i, strong, b, span, and font tags.
InlineStyle() - Constructor for class com.overzealous.remark.convert.InlineStyle
 
inputStream(InputStream) - Method in interface org.jsoup.Connection.KeyVal
Add or update an input stream to this keyVal
inputStream() - Method in interface org.jsoup.Connection.KeyVal
Get the input stream associated with this keyval, if any
inputStream(InputStream) - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
inputStream() - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
insertChildren(int, Collection<? extends Node>) - Method in class org.jsoup.nodes.Element
Inserts the given child nodes into this element at the specified index.
inSorted(String, String[]) - Static method in class org.jsoup.helper.StringUtil
 
inWordEmphasis - Variable in class com.overzealous.remark.Options
Configures how in-word emphasis is handled.
is(String) - Method in class org.jsoup.nodes.Element
Check if this element matches the given Selector CSS query.
is(Evaluator) - Method in class org.jsoup.nodes.Element
Check if this element matches the given evaluator.
is(String) - Method in class org.jsoup.select.Elements
Test if any of the matched elements match the supplied query.
isAdditionalSpacingNeeded() - Method in enum com.overzealous.remark.Options.InWordEmphasis
Returns true when Remark should add spaces around the emphasis characters.
isBaseNamedEntity(String) - Static method in class org.jsoup.nodes.Entities
Check if the input is a known named entity in the base entity set.
isBlank(String) - Static method in class org.jsoup.helper.StringUtil
Tests if a string is blank: null, empty, or only whitespace (" ", \r\n, \t, etc)
isBlank() - Method in class org.jsoup.nodes.TextNode
Test if this text node is blank -- that is, empty or only whitespace (including newlines).
isBlock() - Method in class org.jsoup.nodes.Element
Test if this element is a block-level element.
isBlock() - Method in class org.jsoup.parser.Tag
Gets if this is a block tag.
isBooleanAttribute() - Method in class org.jsoup.nodes.Attribute
 
isBooleanAttribute() - Method in class org.jsoup.nodes.BooleanAttribute
 
isCancelled() - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
isCleanedHtmlEchoed() - Method in class com.overzealous.remark.Remark
Returns true if the cleaned HTML document is echoed to System.out.
isColspanEnabled() - Method in enum com.overzealous.remark.Options.Tables
True if the table is rendered as a MultiMarkdown table with column spanning.
isConvertedToText() - Method in enum com.overzealous.remark.Options.Tables
True if the table is to be converted to plain text.
isData() - Method in class org.jsoup.parser.Tag
Gets if this tag is a data only tag.
isDataAttribute() - Method in class org.jsoup.nodes.Attribute
 
isDirectory(String) - Static method in class com.kamontat.utilities.FilesUtil
check is path a directory
isDirectoryEmpty(String) - Static method in class com.kamontat.utilities.FilesUtil
check is that directory empty or not
isDirectoryExist(String) - Static method in class com.kamontat.utilities.FilesUtil
check if directory exists, if not exist, create it, return false if create failed
isDirectoryExistNotCreate(String) - Static method in class com.kamontat.utilities.FilesUtil
check if directory exists
isDone() - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
 
isEmphasisPreserved() - Method in enum com.overzealous.remark.Options.InWordEmphasis
Returns whether or not to preserve emphasis at all.
isEmpty() - Method in class com.overzealous.remark.util.BlockWriter
Returns true if nothing has been written to the stream yet.
isEmpty() - Method in class org.jsoup.parser.CharacterReader
Tests if all the content has been read.
isEmpty() - Method in class org.jsoup.parser.Tag
Get if this is an empty tag
isEmpty() - Method in class org.jsoup.parser.TokenQueue
Is the queue empty?
IsEmpty() - Constructor for class org.jsoup.select.Evaluator.IsEmpty
 
isEnabled() - Method in enum com.overzealous.remark.Options.FencedCodeBlocks
True if fenced code blocks are enabled
isFalse(boolean) - Static method in class org.jsoup.helper.Validate
Validates that the value is false
isFalse(boolean, String) - Static method in class org.jsoup.helper.Validate
Validates that the value is false
isFileExist(String) - Static method in class com.kamontat.utilities.FilesUtil
 
isFileExistNotCreate(String) - Static method in class com.kamontat.utilities.FilesUtil
check if the specified file exists
IsFirstChild() - Constructor for class org.jsoup.select.Evaluator.IsFirstChild
 
IsFirstOfType() - Constructor for class org.jsoup.select.Evaluator.IsFirstOfType
 
isFormListed() - Method in class org.jsoup.parser.Tag
Get if this tag represents a control associated with a form.
isFormSubmittable() - Method in class org.jsoup.parser.Tag
Get if this tag represents an element that should be submitted with a form.
isInline() - Method in class org.jsoup.parser.Tag
Gets if this tag is an inline tag.
isKnownTag() - Method in class org.jsoup.parser.Tag
Get if this is a pre-defined tag, or was auto created on parsing.
isKnownTag(String) - Static method in class org.jsoup.parser.Tag
Check if this tagname is a known tag.
IsLastChild() - Constructor for class org.jsoup.select.Evaluator.IsLastChild
 
IsLastOfType() - Constructor for class org.jsoup.select.Evaluator.IsLastOfType
 
isLeftAsHtml() - Method in enum com.overzealous.remark.Options.Tables
True if the table is to be left as raw HTML.
isNamedEntity(String) - Static method in class org.jsoup.nodes.Entities
Check if the input is a known named entity
IsNthChild(int, int) - Constructor for class org.jsoup.select.Evaluator.IsNthChild
 
IsNthLastChild(int, int) - Constructor for class org.jsoup.select.Evaluator.IsNthLastChild
 
IsNthLastOfType(int, int) - Constructor for class org.jsoup.select.Evaluator.IsNthLastOfType
 
IsNthOfType(int, int) - Constructor for class org.jsoup.select.Evaluator.IsNthOfType
 
isNumeric(String) - Static method in class org.jsoup.helper.StringUtil
Tests if a string is numeric, i.e.
IsOnlyChild() - Constructor for class org.jsoup.select.Evaluator.IsOnlyChild
 
IsOnlyOfType() - Constructor for class org.jsoup.select.Evaluator.IsOnlyOfType
 
isRemoved() - Method in enum com.overzealous.remark.Options.Tables
True if the table is to be fully removed.
isRenderedAsCode() - Method in enum com.overzealous.remark.Options.Tables
True if the table should be rendered as a code block
IsRoot() - Constructor for class org.jsoup.select.Evaluator.IsRoot
 
isSafeAttribute(String, Element, Attribute) - Method in class org.jsoup.safety.Whitelist
Test if the supplied attribute is allowed by this whitelist for this tag
isSafeTag(String) - Method in class org.jsoup.safety.Whitelist
Test if the supplied tag is allowed by this whitelist
isSelfClosing() - Method in class org.jsoup.parser.Tag
Get if this tag is self closing.
isShutDown() - Method in class com.kamontat.utilities.ExecuteWorker
to check is this class already shutdown
isTerminate() - Method in class com.kamontat.utilities.ExecuteWorker
Inherit docs from ExecutorService.isTerminated()
Returns true if all tasks have completed following shut down.
isTrackErrors() - Method in class org.jsoup.parser.Parser
Check if parse error tracking is enabled.
isTrue(boolean) - Static method in class org.jsoup.helper.Validate
Validates that the value is true
isTrue(boolean, String) - Static method in class org.jsoup.helper.Validate
Validates that the value is true
isValid(String, Whitelist) - Static method in class org.jsoup.Jsoup
Test if the input body HTML has only tags and attributes allowed by the Whitelist.
isValid(Document) - Method in class org.jsoup.safety.Cleaner
Determines if the input document bodyis valid, against the whitelist.
isValidBodyHtml(String) - Method in class org.jsoup.safety.Cleaner
 
isWhitespace(int) - Static method in class org.jsoup.helper.StringUtil
Tests if a code point is "whitespace" as defined in the HTML spec.
iterator() - Method in class org.jsoup.nodes.Attributes
 

J

join(Collection, String) - Static method in class org.jsoup.helper.StringUtil
Join a collection of strings by a separator
join(Iterator, String) - Static method in class org.jsoup.helper.StringUtil
Join a collection of strings by a separator
Jsoup - Class in org.jsoup
The core public access point to the jsoup functionality.

K

key(String) - Method in interface org.jsoup.Connection.KeyVal
Update the key of a keyval
key() - Method in interface org.jsoup.Connection.KeyVal
Get the key of a keyval
key(String) - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
key() - Method in class org.jsoup.helper.HttpConnection.KeyVal
 

L

last() - Method in class org.jsoup.select.Elements
Get the last matched element.
lastElementSibling() - Method in class org.jsoup.nodes.Element
Gets the last element sibling of this element
List - Class in com.overzealous.remark.convert
Handles ol and ul lists.
List() - Constructor for class com.overzealous.remark.convert.List
 
ListLinks - Class in org.jsoup.examples
Example program to list links from a URL.
ListLinks() - Constructor for class org.jsoup.examples.ListLinks
 
load(File, String, String) - Static method in class org.jsoup.helper.DataUtil
Loads a file to a Document.
load(InputStream, String, String) - Static method in class org.jsoup.helper.DataUtil
Parses a Document from an input steam.
load(InputStream, String, String, Parser) - Static method in class org.jsoup.helper.DataUtil
Parses a Document from an input steam, using the provided Parser.
location() - Method in class org.jsoup.nodes.Document
Get the URL this Document was parsed from.
LongToDateString(long) - Static method in class com.kamontat.utilities.DateUtil
return string value of specified unix timestamp

M

main(String[]) - Static method in enum com.kamontat.constants.SizeUnit
Example usage directly
otherwise you can use this enum by SizeUtil.getSize(long, SizeUnit, SizeUnitType)
Main - Class in com.overzealous.remark
This is the starting point to begin remarking HTML to Markdown from the command line.
Main() - Constructor for class com.overzealous.remark.Main
 
main(String[]) - Static method in class com.overzealous.remark.Main
 
main(String...) - Static method in class org.jsoup.examples.HtmlToPlainText
 
main(String[]) - Static method in class org.jsoup.examples.ListLinks
 
markdown() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with the original Markdown.
markdownExtra() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with PHP Markdown Extra features.
MarkdownTable - Class in com.overzealous.remark.util
Provides a class to contain the structure of an HTML table so it can be cleanly formatted as a plain text structure (either as Markdown or within a Markdown code block).
MarkdownTable() - Constructor for class com.overzealous.remark.util.MarkdownTable
Creates a new, empty MarkdownTable
MarkdownTable.Alignment - Enum in com.overzealous.remark.util
Simple enum to manage the alignment of a column.
MarkdownTableCell - Class in com.overzealous.remark.util
This class contains the contents of a table cell.
MarkdownTableCell() - Constructor for class com.overzealous.remark.util.MarkdownTableCell
Creates a new, empty MarkdownTableCell
MarkdownTableCell(String) - Constructor for class com.overzealous.remark.util.MarkdownTableCell
Creates a new MarkdownTableCell with only contents
MarkdownTableCell(String, MarkdownTable.Alignment) - Constructor for class com.overzealous.remark.util.MarkdownTableCell
Creates a new MarkdownTableCell with contents and alignment
MarkdownTableCell(String, int) - Constructor for class com.overzealous.remark.util.MarkdownTableCell
Creates a new MarkdownTableCell with contents and a colspan
MarkdownTableCell(String, MarkdownTable.Alignment, int) - Constructor for class com.overzealous.remark.util.MarkdownTableCell
Creates a new MarkdownTableCell with contents and a colspan
matchChomp(String) - Method in class org.jsoup.parser.TokenQueue
Tests if the queue matches the sequence (as with match), and if they do, removes the matched string from the queue.
matches(String) - Method in class org.jsoup.parser.TokenQueue
Tests if the next characters on the queue match the sequence.
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AllElements
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.Attribute
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeStarting
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValue
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValueContaining
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValueEnding
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValueMatching
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValueNot
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.AttributeWithValueStarting
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.Class
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.ContainsData
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.ContainsOwnText
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.ContainsText
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.CssNthEvaluator
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.Id
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IndexEquals
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IndexGreaterThan
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IndexLessThan
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsEmpty
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsFirstChild
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsLastChild
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsOnlyChild
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsOnlyOfType
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.IsRoot
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator
Test if the element meets the evaluator's requirements.
Matches(Pattern) - Constructor for class org.jsoup.select.Evaluator.Matches
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.Matches
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.MatchesOwn
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.Tag
 
matches(Element, Element) - Method in class org.jsoup.select.Evaluator.TagEndsWith
 
matchesAny(String...) - Method in class org.jsoup.parser.TokenQueue
Tests if the next characters match any of the sequences.
matchesAny(char...) - Method in class org.jsoup.parser.TokenQueue
 
matchesCS(String) - Method in class org.jsoup.parser.TokenQueue
Case sensitive match test.
MatchesOwn(Pattern) - Constructor for class org.jsoup.select.Evaluator.MatchesOwn
 
matchesStartTag() - Method in class org.jsoup.parser.TokenQueue
 
matchesWhitespace() - Method in class org.jsoup.parser.TokenQueue
Tests if queue starts with a whitespace character.
matchesWord() - Method in class org.jsoup.parser.TokenQueue
Test if the queue matches a word character (letter or digit).
maxBodySize(int) - Method in interface org.jsoup.Connection
Set the maximum bytes to read from the (uncompressed) connection into the body, before the connection is closed, and the input truncated.
maxBodySize() - Method in interface org.jsoup.Connection.Request
Get the maximum body size, in bytes.
maxBodySize(int) - Method in interface org.jsoup.Connection.Request
Update the maximum body size, in bytes.
maxBodySize(int) - Method in class org.jsoup.helper.HttpConnection
 
maxBodySize() - Method in class org.jsoup.helper.HttpConnection.Request
 
maxBodySize(int) - Method in class org.jsoup.helper.HttpConnection.Request
 
Md2Html - Class in com.kamontat.convert
 
method() - Method in interface org.jsoup.Connection.Base
Get the request method
method(Connection.Method) - Method in interface org.jsoup.Connection.Base
Set the request method
method(Connection.Method) - Method in interface org.jsoup.Connection
Set the request method to use, GET or POST.
method(Connection.Method) - Method in class org.jsoup.helper.HttpConnection
 
moveFile(String, String) - Static method in class com.kamontat.utilities.FilesUtil
move a file
moveFolder(String, String) - Static method in class com.kamontat.utilities.FilesUtil
move a folder
moveTheFile(String, String, String) - Method in class com.kamontat.utilities.FilesUtil
move a file
multiMarkdown() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with MultiMarkdown features.
multiply(char, int) - Static method in class com.overzealous.remark.util.StringUtils
Duplicates the given character count times.
multiply(String, int) - Static method in class com.overzealous.remark.util.StringUtils
Duplicates the given string count times.
multiply(PrintWriter, char, int) - Static method in class com.overzealous.remark.util.StringUtils
Duplicates the given character count times to the Writer.
multiply(PrintWriter, String, int) - Static method in class com.overzealous.remark.util.StringUtils
Duplicates the given string count times to the Writer.

N

name() - Method in class org.jsoup.nodes.XmlDeclaration
Get the name of this declaration.
newFile(String, String) - Static method in class com.kamontat.utilities.FilesUtil
create new file
newFile(String, String, boolean) - Static method in class com.kamontat.utilities.FilesUtil
create file
newFile(String, String, String) - Static method in class com.kamontat.utilities.FilesUtil
create file with specified encoding
newFolder(String) - Static method in class com.kamontat.utilities.FilesUtil
create folder
newOutputSetting(Document.OutputSettings) - Static method in class com.kamontat.utilities.HtmlUtil
setting new output.
next() - Method in class org.jsoup.select.Elements
Get the immediate next element sibling of each element in this list.
next(String) - Method in class org.jsoup.select.Elements
Get the immediate next element sibling of each element in this list, filtered by the query.
nextAll() - Method in class org.jsoup.select.Elements
Get all of the following element siblings of each element in this list.
nextAll(String) - Method in class org.jsoup.select.Elements
Get all of the following element siblings of each element in this list, filtered by the query.
nextElementSibling() - Method in class org.jsoup.nodes.Element
Gets the next sibling element of this element.
nextSibling() - Method in class org.jsoup.nodes.Node
Get this node's next sibling.
Node - Class in org.jsoup.nodes
The base, abstract Node model.
Node(String, Attributes) - Constructor for class org.jsoup.nodes.Node
Create a new Node.
Node(String) - Constructor for class org.jsoup.nodes.Node
 
Node() - Constructor for class org.jsoup.nodes.Node
Default constructor.
NodeHandler - Interface in com.overzealous.remark.convert
Interface for classes that handle processing HTML Elements.
nodeName() - Method in class org.jsoup.nodes.Comment
 
nodeName() - Method in class org.jsoup.nodes.DataNode
 
nodeName() - Method in class org.jsoup.nodes.Document
 
nodeName() - Method in class org.jsoup.nodes.DocumentType
 
nodeName() - Method in class org.jsoup.nodes.Element
 
nodeName() - Method in class org.jsoup.nodes.Node
Get the node name of this node.
nodeName() - Method in class org.jsoup.nodes.TextNode
 
nodeName() - Method in class org.jsoup.nodes.XmlDeclaration
 
NodeRemover - Class in com.overzealous.remark.convert
 
NodeTraversor - Class in org.jsoup.select
Depth-first node traversor.
NodeTraversor(NodeVisitor) - Constructor for class org.jsoup.select.NodeTraversor
Create a new traversor.
NodeVisitor - Interface in org.jsoup.select
Node visitor interface.
none() - Static method in class org.jsoup.safety.Whitelist
This whitelist allows only text nodes: all HTML will be stripped.
noNullElements(Object[]) - Static method in class org.jsoup.helper.Validate
Validates that the array contains no null elements
noNullElements(Object[], String) - Static method in class org.jsoup.helper.Validate
Validates that the array contains no null elements
normalise() - Method in class org.jsoup.nodes.Document
Normalise the document.
normaliseWhitespace(String) - Static method in class org.jsoup.helper.StringUtil
Normalise the whitespace within this string; multiple spaces collapse to a single, and all whitespace characters (e.g.
not(String) - Method in class org.jsoup.select.Elements
Remove elements from this list that match the Selector query.
notEmpty(String) - Static method in class org.jsoup.helper.Validate
Validates that the string is not empty
notEmpty(String, String) - Static method in class org.jsoup.helper.Validate
Validates that the string is not empty
notNull(Object) - Static method in class org.jsoup.helper.Validate
Validates that the object is not null
notNull(Object, String) - Static method in class org.jsoup.helper.Validate
Validates that the object is not null
noTracking() - Static method in class org.jsoup.parser.ParseErrorList
 

O

Options - Class in com.overzealous.remark
This class is used to configure the Remark engine.
Options() - Constructor for class com.overzealous.remark.Options
Configures a default set of options.
Options.FencedCodeBlocks - Enum in com.overzealous.remark
Provides settings to configure if fenced code blocks are used.
Options.InWordEmphasis - Enum in com.overzealous.remark
Provides options for how to handle in-word emphasis.
Options.Tables - Enum in com.overzealous.remark
Provides settings to control how Tables are converted.
org.jsoup - package org.jsoup
Contains the main Jsoup class, which provides convenient static access to the jsoup functionality.
org.jsoup.examples - package org.jsoup.examples
Contains example programs and use of jsoup.
org.jsoup.helper - package org.jsoup.helper
 
org.jsoup.nodes - package org.jsoup.nodes
HTML document structure nodes.
org.jsoup.parser - package org.jsoup.parser
Contains the HTML parser, tag specifications, and HTML tokeniser.
org.jsoup.safety - package org.jsoup.safety
Contains the jsoup HTML cleaner, and whitelist definitions.
org.jsoup.select - package org.jsoup.select
Packages to support the CSS-style element selector.
outerHtml() - Method in class org.jsoup.nodes.Document
 
outerHtml() - Method in class org.jsoup.nodes.Node
Get the outer HTML of this node.
outerHtml(Appendable) - Method in class org.jsoup.nodes.Node
 
outerHtml() - Method in class org.jsoup.select.Elements
Get the combined outer HTML of all matched elements.
outline() - Method in class org.jsoup.nodes.Document.OutputSettings
Get if outline mode is enabled.
outline(boolean) - Method in class org.jsoup.nodes.Document.OutputSettings
Enable or disable HTML outline mode.
outputSettings() - Method in class org.jsoup.nodes.Document
Get the document's current output settings.
outputSettings(Document.OutputSettings) - Method in class org.jsoup.nodes.Document
Set the document's output settings.
OutputSettings() - Constructor for class org.jsoup.nodes.Document.OutputSettings
 
ownerDocument() - Method in class org.jsoup.nodes.Node
Gets the Document associated with this Node.
ownText() - Method in class org.jsoup.nodes.Element
Gets the text owned by this element only; does not get the combined text of all children.

P

padding(int) - Static method in class org.jsoup.helper.StringUtil
Returns space padding
Paragraph - Class in com.overzealous.remark.convert
Handles paragraph (p) tags.
Paragraph() - Constructor for class com.overzealous.remark.convert.Paragraph
 
parent() - Method in class org.jsoup.nodes.Element
 
parent() - Method in class org.jsoup.nodes.Node
Gets this node's parent node.
parentNode() - Method in class org.jsoup.nodes.Node
Gets this node's parent node.
parents() - Method in class org.jsoup.nodes.Element
Get this element's parent and ancestors, up to the document root.
parents() - Method in class org.jsoup.select.Elements
Get all of the parents and ancestor elements of the matched elements.
parse(String) - Static method in class com.kamontat.utilities.HtmlUtil
convert html String to Document (A lot more easier to manage it)
parse() - Method in interface org.jsoup.Connection.Response
Parse the body of the response as a Document.
parse() - Method in class org.jsoup.helper.HttpConnection.Response
 
parse(String, String) - Static method in class org.jsoup.Jsoup
Parse HTML into a Document.
parse(String, String, Parser) - Static method in class org.jsoup.Jsoup
Parse HTML into a Document, using the provided Parser.
parse(String) - Static method in class org.jsoup.Jsoup
Parse HTML into a Document.
parse(File, String, String) - Static method in class org.jsoup.Jsoup
Parse the contents of a file as HTML.
parse(File, String) - Static method in class org.jsoup.Jsoup
Parse the contents of a file as HTML.
parse(InputStream, String, String) - Static method in class org.jsoup.Jsoup
Read an input stream, and parse it to a Document.
parse(InputStream, String, String, Parser) - Static method in class org.jsoup.Jsoup
Read an input stream, and parse it to a Document.
parse(URL, int) - Static method in class org.jsoup.Jsoup
Fetch a URL, and parse it as HTML.
parse(String, String) - Static method in class org.jsoup.parser.Parser
Parse HTML into a Document.
parse(String) - Static method in class org.jsoup.select.QueryParser
Parse a CSS query into an Evaluator.
parseBodyFragment(String, String) - Static method in class org.jsoup.Jsoup
Parse a fragment of HTML, with the assumption that it forms the body of the HTML.
parseBodyFragment(String) - Static method in class org.jsoup.Jsoup
Parse a fragment of HTML, with the assumption that it forms the body of the HTML.
parseBodyFragment(String, String) - Static method in class org.jsoup.parser.Parser
Parse a fragment of HTML into the body of a Document.
parseBodyFragmentRelaxed(String, String) - Static method in class org.jsoup.parser.Parser
ParseError - Class in org.jsoup.parser
A Parse Error records an error in the input HTML that occurs in either the tokenisation or the tree building phase.
ParseErrorList - Class in org.jsoup.parser
A container for ParseErrors.
parseFragment(String, Element, String) - Static method in class org.jsoup.parser.Parser
Parse a fragment of HTML into a list of nodes.
parseFragment(String, Element, String, ParseErrorList) - Static method in class org.jsoup.parser.Parser
Parse a fragment of HTML into a list of nodes.
parseInput(String, String) - Method in class org.jsoup.parser.Parser
 
parser(Parser) - Method in interface org.jsoup.Connection
Provide an alternate parser to use when parsing the response to a Document.
parser(Parser) - Method in interface org.jsoup.Connection.Request
Specify the parser to use when parsing the document.
parser() - Method in interface org.jsoup.Connection.Request
Get the current parser to use when parsing the document.
parser(Parser) - Method in class org.jsoup.helper.HttpConnection
 
parser(Parser) - Method in class org.jsoup.helper.HttpConnection.Request
 
parser() - Method in class org.jsoup.helper.HttpConnection.Request
 
Parser - Class in org.jsoup.parser
Parses HTML into a Document.
Parser(TreeBuilder) - Constructor for class org.jsoup.parser.Parser
Create a new Parser, using the specified TreeBuilder
ParseSettings - Class in org.jsoup.parser
Controls parser settings, to optionally preserve tag and/or attribute name case.
ParseSettings(boolean, boolean) - Constructor for class org.jsoup.parser.ParseSettings
Define parse settings.
parseXmlFragment(String, String) - Static method in class org.jsoup.parser.Parser
Parse a fragment of XML into a list of nodes.
peek() - Method in class org.jsoup.parser.TokenQueue
Retrieves but does not remove the first character from the queue.
peekLast() - Method in class org.jsoup.helper.DescendableLinkedList
Look at the last element, if there is one.
pegdownAllExtensions() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with pegdown configured with all extensions.
pegdownBase() - Static method in class com.overzealous.remark.Options
Creates and returns a new Options set with the default options compatible with the base pegdown configuration.
pollLast() - Method in class org.jsoup.helper.DescendableLinkedList
Remove and return the last element, if there is one
pos() - Method in class org.jsoup.parser.CharacterReader
Gets the current cursor position in the content.
post() - Method in interface org.jsoup.Connection
Execute the request as a POST, and parse the result.
post() - Method in class org.jsoup.helper.HttpConnection
 
postDataCharset(String) - Method in interface org.jsoup.Connection
Sets the default post data character set for x-www-form-urlencoded post data
postDataCharset(String) - Method in interface org.jsoup.Connection.Request
Sets the post data character set for x-www-form-urlencoded post data
postDataCharset() - Method in interface org.jsoup.Connection.Request
Gets the post data character set for x-www-form-urlencoded post data
postDataCharset(String) - Method in class org.jsoup.helper.HttpConnection
 
postDataCharset(String) - Method in class org.jsoup.helper.HttpConnection.Request
 
postDataCharset() - Method in class org.jsoup.helper.HttpConnection.Request
 
prepend(String) - Method in class org.jsoup.nodes.Element
Add inner HTML into this element.
prepend(String) - Method in class org.jsoup.select.Elements
Add the supplied HTML to the start of each matched element's inner HTML.
prependAndRecurse(String, Element, DocumentConverter, Map<String, NodeHandler>) - Method in class com.overzealous.remark.convert.AbstractNodeHandler
Recursively processes child nodes, and prepends the given string to the output.
prependChild(Node) - Method in class org.jsoup.nodes.Element
Add a node to the start of this element's children.
prependEachLine(String, String) - Static method in class com.overzealous.remark.util.StringUtils
Prepends a specific string to the front of each line of an input string.
prependEachLine(PrintWriter, String, String) - Static method in class com.overzealous.remark.util.StringUtils
Prepends a specific string to the front of each line of an input string.
prependElement(String) - Method in class org.jsoup.nodes.Element
Create a new element by tag name, and add it as the first child.
prependText(String) - Method in class org.jsoup.nodes.Element
Create and prepend a new TextNode to this element.
preserveCase - Static variable in class org.jsoup.parser.ParseSettings
Preserve both tag and attribute case.
preserveRelativeLinks - Variable in class com.overzealous.remark.Options
If true, relative links are preserved.
preserveRelativeLinks(boolean) - Method in class org.jsoup.safety.Whitelist
Configure this Whitelist to preserve relative links in an element's URL attribute, or convert them to absolute links.
preserveWhitespace() - Method in class org.jsoup.parser.Tag
Get if this tag should preserve whitespace within child text nodes.
prettyPrint() - Method in class org.jsoup.nodes.Document.OutputSettings
Get if pretty printing is enabled.
prettyPrint(boolean) - Method in class org.jsoup.nodes.Document.OutputSettings
Enable or disable pretty printing.
prev() - Method in class org.jsoup.select.Elements
Get the immediate previous element sibling of each element in this list.
prev(String) - Method in class org.jsoup.select.Elements
Get the immediate previous element sibling of each element in this list, filtered by the query.
prevAll() - Method in class org.jsoup.select.Elements
Get all of the previous element siblings of each element in this list.
prevAll(String) - Method in class org.jsoup.select.Elements
Get all of the previous element siblings of each element in this list, filtered by the query.
previousElementSibling() - Method in class org.jsoup.nodes.Element
Gets the previous element sibling of this element.
previousSibling() - Method in class org.jsoup.nodes.Node
Get this node's previous sibling.
printBlock(Object) - Method in class com.overzealous.remark.util.BlockWriter
printHeader() - Method in class com.kamontat.utilities.URLManager
print all header to (DEBUG TOOL)
println() - Method in class com.overzealous.remark.util.BlockWriter
 
printStackTrace() - Method in exception com.kamontat.exception.ConversionException
 
process(Token) - Method in class org.jsoup.parser.HtmlTreeBuilder
 
process(Token) - Method in class org.jsoup.parser.XmlTreeBuilder
 
Protocol - Enum in com.kamontat.constance
protocol for website link
proxy(Proxy) - Method in interface org.jsoup.Connection
Set the proxy to use for this request.
proxy(String, int) - Method in interface org.jsoup.Connection
Set the HTTP proxy to use for this request.
proxy() - Method in interface org.jsoup.Connection.Request
Get the proxy used for this request.
proxy(Proxy) - Method in interface org.jsoup.Connection.Request
Update the proxy for this request.
proxy(String, int) - Method in interface org.jsoup.Connection.Request
Set the HTTP proxy to use for this request.
proxy(Proxy) - Method in class org.jsoup.helper.HttpConnection
 
proxy(String, int) - Method in class org.jsoup.helper.HttpConnection
 
proxy() - Method in class org.jsoup.helper.HttpConnection.Request
 
proxy(Proxy) - Method in class org.jsoup.helper.HttpConnection.Request
 
proxy(String, int) - Method in class org.jsoup.helper.HttpConnection.Request
 
PUBLIC_KEY - Static variable in class org.jsoup.nodes.DocumentType
 
push(E) - Method in class org.jsoup.helper.DescendableLinkedList
Add a new element to the start of the list.
put(String, String) - Method in class org.jsoup.nodes.Attributes
Set a new attribute, or replace an existing one by key.
put(String, boolean) - Method in class org.jsoup.nodes.Attributes
Set a new boolean attribute, remove attribute if value is false.
put(Attribute) - Method in class org.jsoup.nodes.Attributes
Set a new attribute, or replace an existing one by key.

Q

QueryParser - Class in org.jsoup.select
Parses a CSS selector into an Evaluator tree.
quirksMode() - Method in class org.jsoup.nodes.Document
 
quirksMode(Document.QuirksMode) - Method in class org.jsoup.nodes.Document
 

R

read() - Method in class com.kamontat.utilities.URLReader
precondition: you need to call URLReader.setInput() first.
readAll(File) - Static method in class com.kamontat.utilities.FilesUtil
read all context in file File
readAll(String) - Static method in class com.kamontat.utilities.FilesUtil
read text file content, return string split by "\n"
readAll(String, String) - Static method in class com.kamontat.utilities.FilesUtil
read text file content, return string split by "\n"
readAll() - Method in class com.kamontat.utilities.URLReader
Read the URL connection and save bytes to output file.
ReaderBackground - Class in com.kamontat.utilities
Read URL in bg(background), start running using method SwingWorker.execute().
ReaderBackground(URLReader) - Constructor for class com.kamontat.utilities.ReaderBackground
 
readLine(String, String) - Static method in class com.kamontat.utilities.FilesUtil
read the line content of text file, in array
PS. size of element = number of line
readLine(String, long) - Static method in class com.kamontat.utilities.FilesUtil
read the specified line content of text file
readToByteBuffer(InputStream, int) - Static method in class org.jsoup.helper.DataUtil
Read the input stream into a byte buffer.
referrer(String) - Method in interface org.jsoup.Connection
Set the request referrer (aka "referer") header.
referrer(String) - Method in class org.jsoup.helper.HttpConnection
 
relaxed() - Static method in class org.jsoup.safety.Whitelist
This whitelist allows a full range of text and structural body HTML: a, b, blockquote, br, caption, cite, code, col, colgroup, dd, div, dl, dt, em, h1, h2, h3, h4, h5, h6, i, img, li, ol, p, pre, q, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, u, ul
remainder() - Method in class org.jsoup.parser.TokenQueue
Consume and return whatever is left on the queue.
remark - Variable in class com.kamontat.convert.Html2Md
for advanced user.
Remark - Class in com.overzealous.remark
The class that manages converting HTML to Markdown.
Remark() - Constructor for class com.overzealous.remark.Remark
Creates a default, pure Markdown-compatible Remark instance.
Remark(Options) - Constructor for class com.overzealous.remark.Remark
Creates a Remark instance with the specified options.
remove(String) - Method in class org.jsoup.nodes.Attributes
Remove an attribute by key.
remove() - Method in class org.jsoup.nodes.Node
Remove (delete) this node from the DOM tree.
remove() - Method in class org.jsoup.select.Elements
Remove each matched element from the DOM.
removeAttr(String) - Method in class org.jsoup.nodes.Node
Remove an attribute from this element.
removeAttr(String) - Method in class org.jsoup.nodes.TextNode
 
removeAttr(String) - Method in class org.jsoup.select.Elements
Remove an attribute from every matched element.
removeAttributes(String, String...) - Method in class org.jsoup.safety.Whitelist
Remove a list of allowed attributes from a tag.
removeChild(Node) - Method in class org.jsoup.nodes.Node
 
removeClass(String) - Method in class org.jsoup.nodes.Element
Remove a class name from this element's class attribute.
removeClass(String) - Method in class org.jsoup.select.Elements
Remove the class name from every matched element's class attribute, if present.
removeCookie(String) - Method in interface org.jsoup.Connection.Base
Remove a cookie by name
removeEnforcedAttribute(String, String) - Method in class org.jsoup.safety.Whitelist
Remove a previously configured enforced attribute from a tag.
removeHeader(String) - Method in interface org.jsoup.Connection.Base
Remove a header by name
removeIgnoreCase(String) - Method in class org.jsoup.nodes.Attributes
Remove an attribute by key.
removeProtocols(String, String, String...) - Method in class org.jsoup.safety.Whitelist
Remove allowed URL protocols for an element's URL attribute.
removeTag(String) - Static method in class com.kamontat.utilities.HtmlUtil
remove top tag and return as string
removeTag(Elements) - Static method in class com.kamontat.utilities.HtmlUtil
remove top tag and return as string
The output, can managing by HtmlUtil.newOutputSetting(Document.OutputSettings)
removeTags(String...) - Method in class org.jsoup.safety.Whitelist
Remove a list of allowed elements from a whitelist.
renderTable(PrintWriter, boolean, boolean) - Method in class com.overzealous.remark.util.MarkdownTable
Renders out the final table.
reparentChild(Node) - Method in class org.jsoup.nodes.Node
 
replaceChild(Node, Node) - Method in class org.jsoup.nodes.Node
 
replaceWith(Node) - Method in class org.jsoup.nodes.Node
Replace this node in the DOM with the supplied node.
request() - Method in interface org.jsoup.Connection
Get the request object associated with this connection
request(Connection.Request) - Method in interface org.jsoup.Connection
Set the connection's request
request() - Method in class org.jsoup.helper.HttpConnection
 
request(Connection.Request) - Method in class org.jsoup.helper.HttpConnection
 
requestBody(String) - Method in interface org.jsoup.Connection.Request
Set a POST (or PUT) request body.
requestBody() - Method in interface org.jsoup.Connection.Request
Get the current request body.
requestBody(String) - Method in interface org.jsoup.Connection
Set a POST (or PUT) request body.
requestBody(String) - Method in class org.jsoup.helper.HttpConnection.Request
 
requestBody() - Method in class org.jsoup.helper.HttpConnection.Request
 
requestBody(String) - Method in class org.jsoup.helper.HttpConnection
 
RequestMethod - Enum in com.kamontat.constance
 
RequestProp - Class in com.kamontat.utilities
 
RequestProp(Headers, String) - Constructor for class com.kamontat.utilities.RequestProp
 
resolve(URL, String) - Static method in class org.jsoup.helper.StringUtil
Create a new absolute URL, from a provided existing absolute URL and a relative URL component.
resolve(String, String) - Static method in class org.jsoup.helper.StringUtil
Create a new absolute URL, from a provided existing absolute URL and a relative URL component.
response() - Method in interface org.jsoup.Connection
Get the response, once the request has been executed
response(Connection.Response) - Method in interface org.jsoup.Connection
Set the connection's response
response() - Method in class org.jsoup.helper.HttpConnection
 
response(Connection.Response) - Method in class org.jsoup.helper.HttpConnection
 
Result - Class in com.kamontat.convert
This class use for Convertor result ONLY
reverseHtmlSmartPunctuation - Variable in class com.overzealous.remark.Options
If true, replace all smart punctuation HTML entities (e.g: &emdash;) with simplified characters (e.g: ---).
reverseHtmlSmartQuotes - Variable in class com.overzealous.remark.Options
If true, replace all smart quote HTML entities (e.g: &ldquo; with simplified characters (e.g: ").
reverseUnicodeSmartPunctuation - Variable in class com.overzealous.remark.Options
If true, replace all smart punctuation unicode characters (e.g: —) with simplified characters (e.g: ---).
reverseUnicodeSmartQuotes - Variable in class com.overzealous.remark.Options
If true, replace all smart quote unicode characters (e.g: “) with simplified characters (e.g: ").
root() - Method in class org.jsoup.nodes.Node
Get this node's root node; that is, its topmost ancestor.

S

schedule(Runnable, int, int, int, TimeUnit, boolean) - Method in class com.kamontat.utilities.ExecuteWorker
The service must be ScheduledExecutorService class
the scheduling the task in time interval at the future,
select(String) - Method in class org.jsoup.nodes.Element
Find elements that match the Selector CSS query, with this element as the starting context.
select(String) - Method in class org.jsoup.select.Elements
Find matching elements within this element list.
select(String, Element) - Static method in class org.jsoup.select.Selector
Find elements matching selector.
select(Evaluator, Element) - Static method in class org.jsoup.select.Selector
Find elements matching selector.
select(String, Iterable<Element>) - Static method in class org.jsoup.select.Selector
Find elements matching selector.
Selector - Class in org.jsoup.select
CSS-like element selector, that finds elements matching a query.
Selector.SelectorParseException - Exception in org.jsoup.select
 
SelectorParseException(String, Object...) - Constructor for exception org.jsoup.select.Selector.SelectorParseException
 
separatePath(String) - Static method in class com.kamontat.utilities.FilesUtil
separate the path to file name array
example: /var/private/zz/yy - [var, private, zz, yy]
SerializationException - Exception in org.jsoup
A SerializationException is raised whenever serialization of a DOM element fails.
SerializationException() - Constructor for exception org.jsoup.SerializationException
Creates and initializes a new serialization exception with no error message and cause.
SerializationException(String) - Constructor for exception org.jsoup.SerializationException
Creates and initializes a new serialization exception with the given error message and no cause.
SerializationException(Throwable) - Constructor for exception org.jsoup.SerializationException
Creates and initializes a new serialization exception with the specified cause and an error message of (cause==null ? null : cause.toString()) (which typically contains the class and error message of cause).
SerializationException(String, Throwable) - Constructor for exception org.jsoup.SerializationException
Creates and initializes a new serialization exception with the given error message and cause.
setAlignment(MarkdownTable.Alignment) - Method in class com.overzealous.remark.util.MarkdownTableCell
Sets the text-alignment.
setBaseUri(String) - Method in class org.jsoup.nodes.Node
Update the base URI of this node and all of its descendants.
setBufferSize(Size) - Static method in class com.kamontat.utilities.ZipsUtil
change buffer size (the default is 32 MB)
setCleanedHtmlEchoed(boolean) - Method in class com.overzealous.remark.Remark
To see the cleaned and processed HTML document, set this to true.
setColspan(int) - Method in class com.overzealous.remark.util.MarkdownTableCell
Sets the number of columns this cell spans.
setContents(String) - Method in class com.overzealous.remark.util.MarkdownTableCell
Sets the contents of this cell.
setInput() - Method in class com.kamontat.utilities.URLReader
set this method before URLReader.read()
setKey(String) - Method in class org.jsoup.nodes.Attribute
Set the attribute key; case is preserved.
setOutput(BlockWriter) - Method in class com.overzealous.remark.convert.DocumentConverter
 
setParentNode(Node) - Method in class org.jsoup.nodes.Node
 
setPrependNewlineString(String) - Method in class com.overzealous.remark.util.BlockWriter
Sets the string to prepend to new lines.
setPrependNewlineString(String, boolean) - Method in class com.overzealous.remark.util.BlockWriter
Sets the string to prepend to new lines.
setReverseAllSmarts(boolean) - Method in class com.overzealous.remark.Options
Utility method to set reversing of both unicode and html smart quotes and punctuation.
setReverseSmartPunctuation(boolean) - Method in class com.overzealous.remark.Options
Utility method to set reversing of both unicode and html smart punctuation.
setReverseSmartQuotes(boolean) - Method in class com.overzealous.remark.Options
Utility method to set reversing of both unicode and html smart quotes.
setSiblingIndex(int) - Method in class org.jsoup.nodes.Node
 
settings(ParseSettings) - Method in class org.jsoup.parser.Parser
 
settings() - Method in class org.jsoup.parser.Parser
 
setTrackErrors(int) - Method in class org.jsoup.parser.Parser
Enable or disable parse error tracking for the next parse.
setTreeBuilder(TreeBuilder) - Method in class org.jsoup.parser.Parser
Update the TreeBuilder used when parsing content.
setType(SizeUnitType) - Method in enum com.kamontat.constants.SizeUnit
set new type and return this
setValue(String) - Method in class org.jsoup.nodes.Attribute
Set the attribute value.
setWholeData(String) - Method in class org.jsoup.nodes.DataNode
Set the data contents of this node.
shouldCollapseAttribute(Document.OutputSettings) - Method in class org.jsoup.nodes.Attribute
Collapsible if it's a boolean attribute and value is empty or same as name
shutdown() - Method in class com.kamontat.utilities.ExecuteWorker
if create this class, you must shutdown it at last
siblingElements() - Method in class org.jsoup.nodes.Element
Get sibling elements.
siblingIndex() - Method in class org.jsoup.nodes.Node
Get the list index of this node in its node sibling list.
siblingNodes() - Method in class org.jsoup.nodes.Node
Retrieves this node's sibling nodes.
simpleLinkIds - Variable in class com.overzealous.remark.Options
If true, link IDs are simply incremented as they are found.
simpleText() - Static method in class org.jsoup.safety.Whitelist
This whitelist allows only simple text formatting: b, em, i, strong, u.
Size - Class in com.kamontat.object
size of file, supported both si and non-si format
Size(BigDecimal, SizeUnit, SizeUnitType) - Constructor for class com.kamontat.object.Size
 
size() - Method in class org.jsoup.nodes.Attributes
Get the number of attributes in this set.
SIZE_SCALE - Static variable in class com.kamontat.object.Size
default scale of BigDecimal size
SizeUnit - Enum in com.kamontat.constants
contains the unit of file size and type of that unit
The type we have 2 type
SI - SizeUnitType.SI Non-SI - SizeUnitType.NON_SI
SizeUnitType - Enum in com.kamontat.constants
 
SizeUtil - Class in com.kamontat.utilities
easy convert file size to other.
SizeUtil() - Constructor for class com.kamontat.utilities.SizeUtil
 
SplitDate(Date) - Static method in class com.kamontat.utilities.DateUtil
split date value of specified date by '-'
splitText(int) - Method in class org.jsoup.nodes.TextNode
Split this text node into two nodes at the specified string offset.
startBlock() - Method in class com.overzealous.remark.util.BlockWriter
Starts a new block.
statusCode() - Method in interface org.jsoup.Connection.Response
Get the status code of the response.
statusCode() - Method in class org.jsoup.helper.HttpConnection.Response
 
statusMessage() - Method in interface org.jsoup.Connection.Response
Get the status message of the response.
statusMessage() - Method in class org.jsoup.helper.HttpConnection.Response
 
StringToBOMCStringDate(String) - Static method in class com.kamontat.utilities.DateUtil
return handled string value of date
stringToDate(String) - Static method in class com.kamontat.utilities.DateUtil
return date value of specified string value in format: yyyy-MM-dd HH:mm:ss
stringToShortDate(String) - Static method in class com.kamontat.utilities.DateUtil
return date value of specified string value in format: yyyy-MM-dd
stringToShortNoDate(String) - Static method in class com.kamontat.utilities.DateUtil
return date value of specified string value in format: yyyyMMdd
StringUtil - Class in org.jsoup.helper
A minimal String utility class.
StringUtil() - Constructor for class org.jsoup.helper.StringUtil
 
StringUtils - Class in com.overzealous.remark.util
A small collection of utilities for manipulating strings.
StringUtils() - Constructor for class com.overzealous.remark.util.StringUtils
 
submit() - Method in class org.jsoup.nodes.FormElement
Prepare to submit this form.
syntax() - Method in class org.jsoup.nodes.Document.OutputSettings
Get the document's current output syntax.
syntax(Document.OutputSettings.Syntax) - Method in class org.jsoup.nodes.Document.OutputSettings
Set the document's output syntax.
SYSTEM_KEY - Static variable in class org.jsoup.nodes.DocumentType
 

T

Table - Class in com.overzealous.remark.convert
 
Table() - Constructor for class com.overzealous.remark.convert.Table
 
tables - Variable in class com.overzealous.remark.Options
Configures how tables are handled.
tag() - Method in class org.jsoup.nodes.Element
Get the Tag for this element.
Tag - Class in org.jsoup.parser
HTML Tag capabilities.
Tag(String) - Constructor for class org.jsoup.select.Evaluator.Tag
 
TagEndsWith(String) - Constructor for class org.jsoup.select.Evaluator.TagEndsWith
 
tagName() - Method in class org.jsoup.nodes.Element
Get the name of the tag for this element.
tagName(String) - Method in class org.jsoup.nodes.Element
Change the tag of this element.
tagName(String) - Method in class org.jsoup.select.Elements
Update the tag name of each matched element.
TagsSearchInScope - Static variable in class org.jsoup.parser.HtmlTreeBuilder
 
tail(Node, int) - Method in class org.jsoup.helper.W3CDom.W3CBuilder
 
tail(Node, int) - Method in interface org.jsoup.select.NodeVisitor
Callback for when a node is last visited, after all of its descendants have been visited.
text(String) - Method in class org.jsoup.nodes.Document
Set the text of the body of this document.
text() - Method in class org.jsoup.nodes.Element
Gets the combined text of this element and all its children.
text(String) - Method in class org.jsoup.nodes.Element
Set the text of this element.
text() - Method in class org.jsoup.nodes.TextNode
Get the text content of this text node.
text(String) - Method in class org.jsoup.nodes.TextNode
Set the text content of this text node.
text() - Method in class org.jsoup.select.Elements
Get the combined text of all the matched elements.
TextCleaner - Class in com.overzealous.remark.convert
This class is used to clean up plain text fields based on the selected set of options.
TextCleaner(Options) - Constructor for class com.overzealous.remark.convert.TextCleaner
Create a new TextCleaner based on the configured options.
TextNode - Class in org.jsoup.nodes
A text node.
TextNode(String, String) - Constructor for class org.jsoup.nodes.TextNode
Create a new TextNode representing the supplied (unencoded) text).
textNodes() - Method in class org.jsoup.nodes.Element
Get this element's child text nodes.
timeout() - Method in interface org.jsoup.Connection.Request
Get the request timeout, in milliseconds.
timeout(int) - Method in interface org.jsoup.Connection.Request
Update the request timeout.
timeout(int) - Method in interface org.jsoup.Connection
Set the request timeouts (connect and read).
timeout() - Method in class org.jsoup.helper.HttpConnection.Request
 
timeout(int) - Method in class org.jsoup.helper.HttpConnection.Request
 
timeout(int) - Method in class org.jsoup.helper.HttpConnection
 
timeStringToDate(String) - Static method in class com.kamontat.utilities.DateUtil
return date value of specified string value in format: HH:mm:ss
title() - Method in class org.jsoup.nodes.Document
Get the string contents of the document's title element.
title(String) - Method in class org.jsoup.nodes.Document
Set the document's title element.
to(BigDecimal, int, SizeUnit) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to any unit that you pass from the parameter
and return the decimal number in decimal point number
Example: decimalPoint=2
the return value will compute until 2 number after pass dot (##.XX)
to(BigDecimal, SizeUnit) - Method in enum com.kamontat.constants.SizeUnit
to(Class<T>) - Method in class com.kamontat.convert.Converter
change Converter to Subclass of it's
Use by converter.to(Converter.class);
toB(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to Byte unit (SizeUnit.B)
1 byte = 1 byte
Minimum: 10^0 or 2^0
toB(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toCall(Runnable, T) - Static method in class com.kamontat.utilities.ExecuteWorker
convert runnable to callable with return value is parameter returnValue
toE(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to EB unit (SizeUnit.EB)
1 EB = 1,000,000,000,000,000,000 byte or 1,152,921,504,606,846,976 byte
Minimum: 10^18 or 2^60
toE(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toG(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to GB unit (SizeUnit.GB)
1 GB = 1,000,000,000 byte or 1,073,741,824 byte
Minimum: 10^9 or 2^30
toG(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toggleClass(String) - Method in class org.jsoup.nodes.Element
Toggle a class name on this element's class attribute: if present, remove it; otherwise add it.
toggleClass(String) - Method in class org.jsoup.select.Elements
Toggle the class name on every matched element's class attribute.
toHtmlByHtml(String) - Static method in class com.kamontat.utilities.HtmlUtil
insert html tag in the top
Beware: It's include head and body tag too
toHtmlByPlain(String) - Static method in class com.kamontat.utilities.HtmlUtil
same work with HtmlUtil.toHtmlByHtml(String) but think input parameter as plain text (so meaning if there have charactor that cannot convert to html it's will change to other)
Example:
toInputStream() - Method in class com.kamontat.convert.Result
get input stream
toK(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to KB unit (SizeUnit.KB)
1 KB = 1000 byte or 1024 byte
Minimum: 10^3 or 2^10
toK(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
TokenQueue - Class in org.jsoup.parser
A character queue with parsing helpers.
TokenQueue(String) - Constructor for class org.jsoup.parser.TokenQueue
Create a new TokenQueue.
toM(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to MB unit (SizeUnit.MB)
1 MB = 1,000,000 byte or 1,048,576 byte
Minimum: 10^6 or 2^20
toM(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toMinimumByte(long, SizeUnitType) - Static method in class com.kamontat.utilities.SizeUtil
change byte to minimum size
From: stackoverflow
toOptionalInputStream() - Method in class com.kamontat.convert.Result
Optional class, To handle about null reference
toOptionalString() - Method in class com.kamontat.convert.Result
Optional class, To handle about null reference
toP(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to PB unit (SizeUnit.PB)
1 PB = 1,000,000,000,000,000 byte or 1,125,899,906,842,624 byte
Minimum: 10^15 or 2^50
toP(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toResult(String) - Static method in class com.kamontat.convert.Result
change string to Result
toResult(InputStream) - Static method in class com.kamontat.convert.Result
change input stream to Result
toRun(Callable<?>) - Static method in class com.kamontat.utilities.ExecuteWorker
convert callable to runnable with ignore all exception and return value.
toString() - Method in enum com.kamontat.constance.Headers
 
toString() - Method in enum com.kamontat.constance.Protocol
 
toString() - Method in enum com.kamontat.constance.RequestMethod
 
toString() - Method in class com.kamontat.convert.Result
get string
toString() - Method in class com.kamontat.object.Size
 
toString() - Method in class com.kamontat.utilities.URLManager
 
toString() - Method in class com.overzealous.remark.util.BlockWriter
If this object has been created using BlockWriter.create(), this will return the contents of the StringWriter buffer.
toString() - Method in class com.overzealous.remark.util.MarkdownTableCell
 
toString() - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
toString() - Method in exception org.jsoup.HttpStatusException
 
toString() - Method in class org.jsoup.nodes.Attribute
Get the string representation of this attribute, implemented as Attribute.html().
toString() - Method in class org.jsoup.nodes.Attributes
 
toString() - Method in class org.jsoup.nodes.Comment
 
toString() - Method in class org.jsoup.nodes.DataNode
 
toString() - Method in class org.jsoup.nodes.Element
 
toString() - Method in class org.jsoup.nodes.Node
 
toString() - Method in class org.jsoup.nodes.TextNode
 
toString() - Method in class org.jsoup.nodes.XmlDeclaration
 
toString() - Method in class org.jsoup.parser.CharacterReader
 
toString() - Method in class org.jsoup.parser.HtmlTreeBuilder
 
toString() - Method in class org.jsoup.parser.ParseError
 
toString() - Method in class org.jsoup.parser.Tag
 
toString() - Method in class org.jsoup.parser.TokenQueue
 
toString() - Method in class org.jsoup.select.Elements
Get the combined outer HTML of all matched elements.
toString() - Method in class org.jsoup.select.Evaluator.AllElements
 
toString() - Method in class org.jsoup.select.Evaluator.Attribute
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeStarting
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValue
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValueContaining
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValueEnding
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValueMatching
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValueNot
 
toString() - Method in class org.jsoup.select.Evaluator.AttributeWithValueStarting
 
toString() - Method in class org.jsoup.select.Evaluator.Class
 
toString() - Method in class org.jsoup.select.Evaluator.ContainsData
 
toString() - Method in class org.jsoup.select.Evaluator.ContainsOwnText
 
toString() - Method in class org.jsoup.select.Evaluator.ContainsText
 
toString() - Method in class org.jsoup.select.Evaluator.CssNthEvaluator
 
toString() - Method in class org.jsoup.select.Evaluator.Id
 
toString() - Method in class org.jsoup.select.Evaluator.IndexEquals
 
toString() - Method in class org.jsoup.select.Evaluator.IndexGreaterThan
 
toString() - Method in class org.jsoup.select.Evaluator.IndexLessThan
 
toString() - Method in class org.jsoup.select.Evaluator.IsEmpty
 
toString() - Method in class org.jsoup.select.Evaluator.IsFirstChild
 
toString() - Method in class org.jsoup.select.Evaluator.IsFirstOfType
 
toString() - Method in class org.jsoup.select.Evaluator.IsLastChild
 
toString() - Method in class org.jsoup.select.Evaluator.IsLastOfType
 
toString() - Method in class org.jsoup.select.Evaluator.IsOnlyChild
 
toString() - Method in class org.jsoup.select.Evaluator.IsOnlyOfType
 
toString() - Method in class org.jsoup.select.Evaluator.IsRoot
 
toString() - Method in class org.jsoup.select.Evaluator.Matches
 
toString() - Method in class org.jsoup.select.Evaluator.MatchesOwn
 
toString() - Method in class org.jsoup.select.Evaluator.Tag
 
toString() - Method in class org.jsoup.select.Evaluator.TagEndsWith
 
toString() - Method in exception org.jsoup.UnsupportedMimeTypeException
 
toT(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to TB unit (SizeUnit.TB)
1 TB = 1,000,000,000,000 byte or 1,099,511,627,776 byte
Minimum: 10^12 or 2^40
toT(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toY(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to YB unit (SizeUnit.YB)
1 YB = 1,000,000,000,000,000,000,000,000 byte or 1,208,925,819,614,629,174,706,176 byte
Minimum: 10^24 or 2^80
toY(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
toZ(BigDecimal, int) - Method in enum com.kamontat.constants.SizeUnit
convert this unit to ZB unit (SizeUnit.ZB)
1 ZB = 1,000,000,000,000,000,000,000 byte or 1,180,591,620,717,411,303,424 byte
Minimum: 10^21 or 2^70
toZ(BigDecimal) - Method in enum com.kamontat.constants.SizeUnit
tracking(int) - Static method in class org.jsoup.parser.ParseErrorList
 
traverse(NodeVisitor) - Method in class org.jsoup.nodes.Node
Perform a depth-first traversal through this node and its descendants.
traverse(NodeVisitor) - Method in class org.jsoup.select.Elements
Perform a depth-first traversal on each of the selected elements.
traverse(Node) - Method in class org.jsoup.select.NodeTraversor
Start a depth-first traverse of the root and all of its descendants.
Type - Enum in com.kamontat.constance
 

U

unescape(String) - Static method in class org.jsoup.parser.TokenQueue
Unescaped a \ escaped string.
unescapeEntities(String, boolean) - Static method in class org.jsoup.parser.Parser
Utility method to unescape HTML entities from a string
unescapeLeadingCharacters(String) - Method in class com.overzealous.remark.convert.TextCleaner
Removes the escaping on leading characters, for example, when they are going to be rendered inside another node, such as a table.
UnsupportedMimeTypeException - Exception in org.jsoup
Signals that a HTTP response returned a mime type that is not supported.
UnsupportedMimeTypeException(String, String, String) - Constructor for exception org.jsoup.UnsupportedMimeTypeException
 
unwrap() - Method in class org.jsoup.nodes.Node
Removes this node from the DOM, and moves its children up into the node's parent.
unwrap() - Method in class org.jsoup.select.Elements
Removes the matched elements from the DOM, and moves their children up into their parents.
unZip(String, String) - Static method in class com.kamontat.utilities.ZipsUtil
unzip all file in zip file to dist folder (outputFolder)
unZip(String, String, FileFilter) - Static method in class com.kamontat.utilities.ZipsUtil
unzip only file that match with FileFilter to the dist folder
updateMetaCharsetElement(boolean) - Method in class org.jsoup.nodes.Document
Sets whether the element with charset information in this document is updated on changes through Document.charset(Charset) or not.
updateMetaCharsetElement() - Method in class org.jsoup.nodes.Document
Returns whether the element with charset information in this document is updated on changes through Document.charset(Charset) or not.
url() - Method in interface org.jsoup.Connection.Base
Get the URL
url(URL) - Method in interface org.jsoup.Connection.Base
Set the URL
url(URL) - Method in interface org.jsoup.Connection
Set the request URL to fetch.
url(String) - Method in interface org.jsoup.Connection
Set the request URL to fetch.
url(URL) - Method in class org.jsoup.helper.HttpConnection
 
url(String) - Method in class org.jsoup.helper.HttpConnection
 
URLManager - Class in com.kamontat.utilities
URL Utility
URLReader - Class in com.kamontat.utilities
Download a URL to a File.
URLReader(URL, File) - Constructor for class com.kamontat.utilities.URLReader
Initialize a new URL Reader.
userAgent(String) - Method in interface org.jsoup.Connection
Set the request user-agent header.
userAgent(String) - Method in class org.jsoup.helper.HttpConnection
 

V

val() - Method in class org.jsoup.nodes.Element
Get the value of a form element (input, textarea, etc).
val(String) - Method in class org.jsoup.nodes.Element
Set the value of a form element (input, textarea, etc).
val() - Method in class org.jsoup.select.Elements
Get the form element's value of the first matched element.
val(String) - Method in class org.jsoup.select.Elements
Set the form element's value in each of the matched elements.
Validate - Class in org.jsoup.helper
Simple validation methods.
validateTLSCertificates() - Method in interface org.jsoup.Connection.Request
Get the current state of TLS (SSL) certificate validation.
validateTLSCertificates(boolean) - Method in interface org.jsoup.Connection.Request
Set TLS certificate validation.
validateTLSCertificates(boolean) - Method in interface org.jsoup.Connection
Disable/enable TLS certificates validation for HTTPS requests.
validateTLSCertificates() - Method in class org.jsoup.helper.HttpConnection.Request
 
validateTLSCertificates(boolean) - Method in class org.jsoup.helper.HttpConnection.Request
 
validateTLSCertificates(boolean) - Method in class org.jsoup.helper.HttpConnection
 
value(String) - Method in interface org.jsoup.Connection.KeyVal
Update the value of a keyval
value() - Method in interface org.jsoup.Connection.KeyVal
Get the value of a keyval
value(String) - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
value() - Method in class org.jsoup.helper.HttpConnection.KeyVal
 
valueOf(String) - Static method in enum com.kamontat.constance.ContentType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.constance.Headers
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.constance.Protocol
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.constance.RequestMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.constance.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.constants.SizeUnit
Returns the enum constant of this type with the specified name.
valueOf(String, SizeUnitType) - Static method in enum com.kamontat.constants.SizeUnit
get string that must contain unit of file size and convert it to SizeUnit
valueOf(String) - Static method in enum com.kamontat.constants.SizeUnitType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.kamontat.convert.Converter.Type
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.overzealous.remark.Options.FencedCodeBlocks
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.overzealous.remark.Options.InWordEmphasis
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.overzealous.remark.Options.Tables
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.overzealous.remark.util.MarkdownTable.Alignment
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jsoup.Connection.Method
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jsoup.nodes.Document.OutputSettings.Syntax
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jsoup.nodes.Document.QuirksMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jsoup.nodes.Entities.EscapeMode
Returns the enum constant of this type with the specified name.
valueOf(String, ParseSettings) - Static method in class org.jsoup.parser.Tag
Get a Tag by name.
valueOf(String) - Static method in class org.jsoup.parser.Tag
Get a Tag by name.
values() - Static method in enum com.kamontat.constance.ContentType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constance.Headers
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constance.Protocol
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constance.RequestMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constance.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constants.SizeUnit
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.constants.SizeUnitType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.kamontat.convert.Converter.Type
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.overzealous.remark.Options.FencedCodeBlocks
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.overzealous.remark.Options.InWordEmphasis
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.overzealous.remark.Options.Tables
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.overzealous.remark.util.MarkdownTable.Alignment
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jsoup.Connection.Method
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jsoup.nodes.Document.OutputSettings.Syntax
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jsoup.nodes.Document.QuirksMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jsoup.nodes.Entities.EscapeMode
Returns an array containing the constants of this enum type, in the order they are declared.

W

W3CBuilder(Document) - Constructor for class org.jsoup.helper.W3CDom.W3CBuilder
 
W3CDom - Class in org.jsoup.helper
Helper class to transform a Document to a org.w3c.dom.Document, for integration with toolsets that use the W3C DOM.
W3CDom() - Constructor for class org.jsoup.helper.W3CDom
 
W3CDom.W3CBuilder - Class in org.jsoup.helper
Implements the conversion by walking the input.
wait(long, TimeUnit) - Method in class com.kamontat.utilities.ExecuteWorker
Blocks until all tasks have completed.
waitAndDone() - Method in class com.kamontat.utilities.ExecuteWorker.ScheduleFutureImp
wait until execution was done, and return the result in term of true/false
walkNodes(NodeHandler, Element) - Method in class com.overzealous.remark.convert.DocumentConverter
Loops over the children of an HTML Element, handling TextNode and child Elements.
walkNodes(NodeHandler, Element, Map<String, NodeHandler>) - Method in class com.overzealous.remark.convert.DocumentConverter
Loops over the children of an HTML Element, handling TextNode and child Elements.
Whitelist - Class in org.jsoup.safety
Whitelists define what HTML (elements and attributes) to allow through the cleaner.
Whitelist() - Constructor for class org.jsoup.safety.Whitelist
Create a new, empty whitelist.
withOutputStream(OutputStream) - Method in class com.overzealous.remark.Remark
Use this method in a chain to handle streaming the output to an OutputStream.
withWriter(Writer) - Method in class com.overzealous.remark.Remark
Use this method in a chain to handle streaming the output to a Writer.
wrap(String) - Method in class org.jsoup.nodes.Element
Wrap the supplied HTML around this element.
wrap(String) - Method in class org.jsoup.nodes.Node
Wrap the supplied HTML around this node.
wrap(String) - Method in class org.jsoup.select.Elements
Wrap the supplied HTML around each matched elements.
write(int) - Method in class com.overzealous.remark.util.BlockWriter
 
write(char[], int, int) - Method in class com.overzealous.remark.util.BlockWriter
 
write(String, int, int) - Method in class com.overzealous.remark.util.BlockWriter
 
writeBlock(Object) - Method in class com.overzealous.remark.util.BlockWriter
Writes an entire block in one go.

X

XmlDeclaration - Class in org.jsoup.nodes
An XML Declaration.
XmlDeclaration(String, String, boolean) - Constructor for class org.jsoup.nodes.XmlDeclaration
Create a new XML declaration
xmlParser() - Static method in class org.jsoup.parser.Parser
Create a new XML parser.
XmlTreeBuilder - Class in org.jsoup.parser
Use the XmlTreeBuilder when you want to parse XML without any of the HTML DOM rules being applied to the document.
XmlTreeBuilder() - Constructor for class org.jsoup.parser.XmlTreeBuilder
 

Z

zip(String, String) - Static method in class com.kamontat.utilities.ZipsUtil
zip all file in input-folder together and save as zipPath
zip(String, String, FileFilter) - Static method in class com.kamontat.utilities.ZipsUtil
zip some file that match filter in input-folder together and save as zipPath
ZipsUtil - Class in com.kamontat.utilities
zip and unzip utilities
ZipsUtil() - Constructor for class com.kamontat.utilities.ZipsUtil
 
A B C D E F G H I J K L M N O P Q R S T U V W X Z 
Skip navigation links

Copyright © 2017. All rights reserved.