- FileSystemCache - Class in com.jaunt.util
-
A local filesystem cache for HTML/XHTML/XML files retrieved from a url.
- FileSystemCache(File) - Constructor for class com.jaunt.util.FileSystemCache
-
Creates a new FileSystemCache using the specified directory as the location for cache files and creates the specified directory (including any necessary parent directories) if it does not already exist
- fillout(String, String) - Method in class com.jaunt.component.Form
-
- fillout(String, String) - Method in class com.jaunt.Document
-
- filloutField(String, String) - Method in class com.jaunt.component.Form
-
Fills the textfield, password field, or textarea field that has the specified text label (case-insensitive, wordspace-insensitive) with the specified value.
- filloutField(String, String) - Method in class com.jaunt.Document
-
Fills the textfield, password field, or textarea field that has the specified text label (case-insensitive, wordspace-insensitive) with the specified value.
- Filter - Class in com.jaunt.util
-
Deprecated.
- Filter() - Constructor for class com.jaunt.util.Filter
-
Deprecated.
- FilterCallback - Interface in com.jaunt.util
-
Deprecated.
- findAttributeValues(String) - Method in class com.jaunt.Element
-
Searches all child/descendant elements and retrieves all attribute values that were found to match the query; example queries: "<a href>"
(finds all href values in anchor tags), "<img src='http:.*'>"
(find all image urls starting with 'http:'), "< id>"
(finds all id values in tags of any name).
- findEach(short) - Method in class com.jaunt.Element
-
Searches all children/descendants and returns all Comments matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
- findEach(String) - Method in class com.jaunt.Element
-
Searches child/descendant elements and retrieves elements that were found to match the query, not including those elements that are children/descendants of any matching elements.
- findEach(String) - Method in class com.jaunt.JNode
-
Searches descendant nodes and returns a JNodes container that holds all
JNodes matching the query, not including those nodes that are descendants
of any matching nodes (ie, excludes nested matches); returns an empty JNodes
container if no matching JNodes were found or if the method is invoked on a leaf node.
- findEvery(String) - Method in class com.jaunt.Element
-
Searches all child/descendant elements and retrieves all elements that were found to match the query.
- findEvery(String) - Method in class com.jaunt.JNode
-
Searches descendant nodes and returns a JNodes container that holds all
JNodes matching the query; returns an empty JNodes container if no matching
JNodes were found or if the method is invoked on a leaf node.
- findFirst(short) - Method in class com.jaunt.Element
-
Searches all children/descendants and returns the first Comment matching the specified Comment type constant (CDATA sections, processing instructions, and DOCTYPE definitions are treated as types of Comment).
- findFirst(String) - Method in class com.jaunt.Element
-
Searches all child/descendant elements and retrieves the first one found to match the query.
- findFirst(String) - Method in class com.jaunt.JNode
-
Searches descendant nodes and retrieves the first
JNode that matches the specified query, or throws a NotFound Exception if
no matching JNode is found; throws a NotFound Exception if
no matching JNode is found, or if this method is invoked on a leaf node.
- findNearestAncestor(String) - Method in class com.jaunt.Element
-
Finds the nearest ancestor Element (working upwards from the current Element) whose tagname matches the specified case insensitive regular expression (using Matcher.matches()).
- findNearestCommonAncestor(Node) - Method in class com.jaunt.Node
-
- followMetaRedirect(int) - Method in class com.jaunt.Document
-
Follows the first redirecting meta tag in the document.
- Form - Class in com.jaunt.component
-
A utility component that makes it easy fill-out the fields of a particular HTML/XHTML form; convenience methods allow for reading/setting input fields (eg textfields, dropdown menus, checkboxes, etc) on the basis of their labels (ie the adjacent text) or by applying a sequence of inputs.
- Form(Element, List<Element>, Document, UserAgent) - Constructor for class com.jaunt.component.Form
-