Package Torello.HTML.NodeSearch
Class CommentNodeCount
- java.lang.Object
-
- Torello.HTML.NodeSearch.CommentNodeCount
-
public class CommentNodeCount extends java.lang.Object
CommentNodeCount 🠞CommentNode:This implies thatTagNodeandTextNodeelements are ignored completely in this search, and instead, the "comments" between the<!--and-->symbols - which are all instances ofCommentNode, are searched.
Count:This implies that the method will count the number of matches that are found, and return that count/number as a integer.
Counts HTML Comments which match a user-specified criteria, such as aString-Predicate, Regular-Expression orTextComparitor.
Methods Available
Method Explanation all (...) This will retrieve the count, or 'number-of,' CommentNodeelements found in the vectorized-page parameter'html'that match the specified search-criteria.allExcept (...) This will retrieve the count, or 'number-of,' CommentNodeelements found in the vectorized-page parameter'html'that do not match the specified search-criteria.Method Parameters
Parameter Explanation Vector<? extends HTMLNode> htmlThis represents any vectorized HTML page, sub-page, or list of partial-elements. int nthThis represents the 'nth'match of a comparisonfor-loop. When the method-signature used includes the parameter'nth', the firstn-1matches that are found - will be skipped, and the'nth'match is, instead, returned.
EXCEPTIONS: AnNExceptionshall throw if the value of parameter'nth'is zero, negative, or larger than the size of the input html-Vector.int sPos, int ePosWhen these parameters are present, only HTMLNode'sthat are found between the specifiedVectorindices will be considered for matching with the search criteria.
NOTE: In every situation where the parametersint sPos, int ePosare 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 endfield set to the length of the vectorized-html page that was passed. (html.size()of parameterVector<HTMLNode> html).
EXCEPTIONS: AnIndexOutOfBoundsExceptionwill be thrown if:- If
sPosis negative, or ifsPosis greater-than or equal-to the size of the inputVector - If
ePosis zero, or greater than the size of the inputVector. - If
sPosis a larger integer thanePos
TextComparitor tcWORKS WITH: This parameter utilizes / works-with parameter String... compareStrto perform the requested comparisons. The comparisons are computed using theString 'body'field of aCommentNode.
When this parameter is present in the method-signature parameter-list, the decision of whether aCommentNodeis to be included in the search result-set is defined by this parameter'sFunctionalInterface Predicate 'test'method.TextComparitoris a JavaBiPredicate<String, String[]>which compares its firstString-parameter against theString'sin its second.Pattern pThese parameters reference Java's "Regular Expression" processing engine. If the method-signature includes the java.util.regex.Patternparameter, the search-loops will use the standard Regular-ExpressionPatternmatching routine:p.asPredicate().test(comment_node.body)when deciding whichCommentNode's"match" this search-criteria.Predicate<String> pWhen this parameter is present in the method-signature parameter-list, the decision of whether a CommentNodeis to be included in the search result-set are made by the results of the JavaPredicate.test(String)method.
Specifically:p.test(comment_node.body)String... compareStrWORKS WITH: This parameter works in coordination with the TextComparitor tcparameter. This parameter supplies theString'swith which the comparisons of theCommentNode.bodyfield may be compared.Return Values:
intreturns a count of how manyTextNode'swere identified on the vectorized-page parameter'html'that contained text that matched the specified criteria
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/HTML/NodeSearch/CommentNodeCount.java
- Open New Browser-Tab: Torello/HTML/NodeSearch/CommentNodeCount.java
File Size: 2,938 Bytes Line Count: 55 '\n' Characters Found
Actual Search Loop Class:
- View Here: SearchLoops/CommentNodes/CmtNCount.java
- Open New Browser-Tab: SearchLoops/CommentNodes/CmtNCount.java
File Size: 934 Bytes Line Count: 36 '\n' Characters Found
Argument Checker Class:
- View Here: ARGCHECK.java
- Open New Browser-Tab: ARGCHECK.java
File Size: 17,874 Bytes Line Count: 425 '\n' Characters Found
Stateless Class:This class neither contains any program-state, nor can it be instantiated. The@StaticFunctionalAnnotation may also be called 'The Spaghetti Report'.Static-Functionalclasses are, essentially, C-Styled Files, without any constructors or non-static member fields. It is a concept very similar to the Java-Bean's@StatelessAnnotation.
- 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 intall(Vector<? extends HTMLNode> html, Predicate<String> p)static intall(Vector<? extends HTMLNode> html, Pattern p)static intall(Vector<? extends HTMLNode> html, TextComparitor tc, String... compareStr)All Matches, Range Limited Modifier and Type Method static intall(Vector<? extends HTMLNode> html, int sPos, int ePos, Predicate<String> p)static intall(Vector<? extends HTMLNode> html, int sPos, int ePos, Pattern p)static intall(Vector<? extends HTMLNode> html, int sPos, int ePos, TextComparitor tc, String... compareStr)All Non-Matches Modifier and Type Method static intallExcept(Vector<? extends HTMLNode> html, Predicate<String> p)static intallExcept(Vector<? extends HTMLNode> html, Pattern p)static intallExcept(Vector<? extends HTMLNode> html, TextComparitor tc, String... compareStr)All Non-Matches, Range Limited Modifier and Type Method static intallExcept(Vector<? extends HTMLNode> html, int sPos, int ePos, Predicate<String> p)static intallExcept(Vector<? extends HTMLNode> html, int sPos, int ePos, Pattern p)static intallExcept(Vector<? extends HTMLNode> html, int sPos, int ePos, TextComparitor tc, String... compareStr)
-