1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58 | package Torello.HTML.NodeSearch;
import java.util.Vector;
import java.util.regex.Pattern;
import java.util.function.Predicate;
import Torello.HTML.*;
import Torello.HTML.NodeSearch.SearchLoops.TagNodes.TNPoll;
import Torello.Java.LV;
/**
* Extracts and returns Tags from an HTML-{@code Vector} that match a user-specified criteria
* based on Tag-Name and whether the tag is an openning or closing tag.
*
* <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=TagNodePoll>
*/
@Torello.JavaDoc.JDHeaderBackgroundImg
@Torello.JavaDoc.StaticFunctional
public class TagNodePoll
{
private TagNodePoll() { }
public static TagNode first (Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
{ return TNPoll.nth (html, 1, new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode last (Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
{ return TNPoll.nthFromEnd (html, 1, new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static Vector<TagNode> all (Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
{ return TNPoll.all (html, new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static Vector<TagNode> allExcept (Vector<? extends HTMLNode> html, TC tagCriteria, String... htmlTags)
{ return TNPoll.allExcept (html, new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode first (Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.nth (html, 1, new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode last (Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.nthFromEnd (html, 1, new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static Vector<TagNode> all (Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.all (html, new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static Vector<TagNode> allExcept (Vector<? extends HTMLNode> html, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.allExcept (html, new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode nth (Vector<? extends HTMLNode> html, int nth, TC tagCriteria, String... htmlTags)
{ return TNPoll.nth (html, ARGCHECK.n(nth, html), new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode nthFromEnd (Vector<? extends HTMLNode> html, int nth, TC tagCriteria, String... htmlTags)
{ return TNPoll.nthFromEnd (html, ARGCHECK.n(nth, html), new LV(html, 0, -1), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode nth (Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.nth (html, ARGCHECK.n(nth, html), new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
public static TagNode nthFromEnd (Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, TC tagCriteria, String... htmlTags)
{ return TNPoll.nthFromEnd (html, ARGCHECK.n(nth, html), new LV(html, sPos, ePos), tagCriteria, ARGCHECK.htmlTags(htmlTags)); }
}
|