Package Torello.HTML.NodeSearch
Class TagNodePoll
- java.lang.Object
-
- Torello.HTML.NodeSearch.TagNodePoll
-
public class TagNodePoll extends java.lang.Object
TagNodePoll 🠞
TagNode:
This implies that only HTMLTagNode's
will be used for searching. The fieldTagNode.tok
field is used as a search criteria. Thispublic, final String
field contains the name of the HTML Element - for instance,'div', 'p', 'span', 'img'
, etc...
InnerTag's - (a.k.a. 'attributes') - are not part of the search.
Poll:
This refers to the operation of both removing and returningnode
matches to the programmer. After a'poll'
operation, the initial vectorized-html will actually contain fewer elements - and the removed elements shall be returned to the calling method.
Extracts and returns Tags from an HTML-Vector
that match a user-specified criteria based on Tag-Name and whether the tag is an openning or closing tag.
Methods Available
Method Explanation first (...) This will 1) find, 2) remove,
and then3) return
(a procedure that here is known as 'polling') the firstTagNode
match-by-html-token found on the vectorized-page parameter'html'
.nth (...) This will 1) find, 2) remove,
and then3) return
(a procedure that here is known as 'polling') the nthTagNode
match-by-html-token found on the vectorized-page parameter'html'
.last (...) This will 1) find, 2) remove,
and then3) return
the lastTagNode
match (according to theString TagNode.tok
and theboolean TagNode.isClosing
fields) found on the vectorized-page parameter'html'
.nthFromEnd (...) This will 1) find, 2) remove,
and then3) return
the nthFromEndTagNode
match (according to the theString TagNode.tok
and theboolean TagNode.isClosing
fields) found on the vectorized-page parameter'html'
.all (...) This will 'poll' every TagNode match (according to the String TagNode.tok
and theboolean TagNode.isClosing
fields) found on the vectorized-page parameter'html'
.allExcept (...) This will 'poll' every TagNode which does not match (according to the String TagNode.tok
and theboolean TagNode.isClosing
fields) found on the vectorized-page parameter'html'
.Method Parameters
Parameter Explanation Vector<? extends HTMLNode> html
This represents any vectorized HTML page, sub-page, or list of partial-elements. int nth
This represents the 'nth'
match of a comparisonfor-loop
. When the method-signature used includes the parameter'nth'
, the firstn-1
matches that are found - will be skipped, and the'nth'
match is, instead, returned.
EXCEPTIONS: AnNException
shall throw if the value of parameter'nth'
is zero, negative, or larger than the size of the input html-Vector
.int sPos, int ePos
When these parameters are present, only HTMLNode's
that are found between the specifiedVector
indices will be considered for matching with the search criteria.
NOTE: In every situation where the parametersint sPos, int ePos
are used, parameter'ePos'
will accept a negative value, but parameter'sPos'
will not. When'ePos'
is passed a negative-value, the internalLV
('Loop Variable Counter') will have itspublic final int end;
field set to the length of the vectorized-html page that was passed. (html.size()
of parameterVector<HTMLNode> html
).
EXCEPTIONS: AnIndexOutOfBoundsException
will be thrown if:- If
sPos
is negative, or ifsPos
is greater-than or equal-to the size of the inputVector
- If
ePos
is zero, or greater than the size of the inputVector
. - If
sPos
is a larger integer thanePos
TC tagCriteria
The three values of enumeration TC
are:TC.OpeningTags, TC.ClosingTags
andTC.Both
. These values specify a search-criteria result set for an HTMLTagNode
. There are two types of HTML Elements:- "opening versions" of the HTML-tag such as:
<A HREF="...">
- "closing versions" of the element such as:
</A>
.
NOTE: If parameter'tagCriteria'
is passed a value ofTC.Both
, then (and this is hopefully obvious), that both 'opening' and 'closing' versions of the tag will be considered to meet / match the search criteria.String... htmlTags
When this parameter is present, only HTMLNode's
which are both instances ofclass TagNode
*and* whoseTagNode.tok
fieldString
-value matches (is equal to) at least one of the elements in thisVarArgs String
parameter-set will be considered for a match.
COMMON EXAMPLES: Some common examples of valid htmlTags are:a, div, img, table, tr, meta
as well as all other valid HTML element-tokens.
NOTE: This comparison is performed using a case-insensitive compare-method
EXCEPTIONS: If even one of the elements in this parameter-set is an invalid HTML token, anHTMLTokException
will be thrown.Return Values:
TagNode
represents a matchedTagNode
from the html vectorized-page parameter'html'
- after having been removed from the underlying vector, first- A return value of
null
implies no matches were found, and no nodes were removed. Vector<TagNode>
- A vector ofTagNode
represent all matches from the vectorized-page parameter'html'
- all of which were also removed from the underlying vector.- A zero-length
Vector<TagNode>
means no matches were found on the page or sub-page. This also means that the original-input vector shall remain unchanged, and no nodes have been removed. Empty vectors are returned from any method where the possibility existed for multiple-matches being provided as a result-set.
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/HTML/NodeSearch/TagNodePoll.java
- Open New Browser-Tab: Torello/HTML/NodeSearch/TagNodePoll.java
File Size: 4,291 Bytes Line Count: 58 '\n' Characters Found
Actual Search Loop Class:
- View Here: SearchLoops/TagNodes/TNPoll.java
- Open New Browser-Tab: SearchLoops/TagNodes/TNPoll.java
File Size: 2,261 Bytes Line Count: 78 '\n' Characters Found
Argument Checker Class:
- View Here: ARGCHECK.java
- Open New Browser-Tab: ARGCHECK.java
File Size: 17,862 Bytes Line Count: 425 '\n' Characters Found
Stateless Class:This class neither contains any program-state, nor can it be instantiated. The@StaticFunctional
Annotation may also be called 'The Spaghetti Report'.Static-Functional
classes are, essentially, C-Styled Files, without any constructors or non-static member fields. It is a concept very similar to the Java-Bean's@Stateless
Annotation.
- 1 Constructor(s), 1 declared private, zero-argument constructor
- 12 Method(s), 12 declared static
- 0 Field(s)
-
-
Method Summary
All Matches Modifier and Type Method static Vector<TagNode>
all(Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
All Matches, Range Limited Modifier and Type Method static Vector<TagNode>
all(Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
All Non-Matches Modifier and Type Method static Vector<TagNode>
allExcept(Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
All Non-Matches, Range Limited Modifier and Type Method static Vector<TagNode>
allExcept(Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
First Match Modifier and Type Method static TagNode
first(Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
First Match, Range Limited Modifier and Type Method static TagNode
first(Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
Last Match Modifier and Type Method static TagNode
last(Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
Last Match, Range Limited Modifier and Type Method static TagNode
last(Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
Nth Match Modifier and Type Method static TagNode
nth(Vector<? extends HTMLNode> html, int nth, TC tagCriteria, String... htmlTags)
Nth Match, Range Limited Modifier and Type Method static TagNode
nth(Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, TC tagCriteria, String... htmlTags)
Nth Match From End Modifier and Type Method static TagNode
nthFromEnd(Vector<? extends HTMLNode> html, int nth, TC tagCriteria, String... htmlTags)
Nth Match From End, Range Limited Modifier and Type Method static TagNode
nthFromEnd(Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, TC tagCriteria, String... htmlTags)
-