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 59 60 61 62 | 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.TagNodesInclusive.TNPollIncl; import Torello.Java.LV; /** * Searches for {@link TagNode} matches, using exactly the same criteria offered by class * {@link TagNodePoll}, but also obtains the corresponding Closing-Tags from the * input-{@code Vector} and, subsequently, <B><I>extracts</I></B> these sublists from the * input-{@code Vector} and then <B><I>returns</I></B> the sublists as new instances of * {@code Vector<HTMLNode>}. * * <EMBED CLASS='external-html' DATA-FILE-ID=TagNodePollInclusive> */ @Torello.JavaDoc.JDHeaderBackgroundImg @Torello.JavaDoc.StaticFunctional public class TagNodePollInclusive { private TagNodePollInclusive() { } public static Vector<HTMLNode> first (Vector<? extends HTMLNode> html, String... htmlTags) { return TNPollIncl.nth (html, 1, new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> last (Vector<? extends HTMLNode> html, String... htmlTags) { return TNPollIncl.nthFromEnd (html, 1, new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<Vector<HTMLNode>> all (Vector<? extends HTMLNode> html, String... htmlTags) { return TNPollIncl.all (html, new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<Vector<HTMLNode>> allExcept (Vector<? extends HTMLNode> html, String... htmlTags) { return TNPollIncl.allExcept (html, new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> first (Vector<? extends HTMLNode> html, int sPos, int ePos, String... htmlTags) { return TNPollIncl.nth (html, 1, new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> last (Vector<? extends HTMLNode> html, int sPos, int ePos, String... htmlTags) { return TNPollIncl.nthFromEnd (html, 1, new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } public static Vector<Vector<HTMLNode>> all (Vector<? extends HTMLNode> html, int sPos, int ePos, String... htmlTags) { return TNPollIncl.all (html, new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } public static Vector<Vector<HTMLNode>> allExcept (Vector<? extends HTMLNode> html, int sPos, int ePos, String... htmlTags) { return TNPollIncl.allExcept (html, new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> nth (Vector<? extends HTMLNode> html, int nth, String... htmlTags) { return TNPollIncl.nth (html, ARGCHECK.n(nth, html), new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> nthFromEnd (Vector<? extends HTMLNode> html, int nth, String... htmlTags) { return TNPollIncl.nthFromEnd (html, ARGCHECK.n(nth, html), new LV(html, 0, -1), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> nth (Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, String... htmlTags) { return TNPollIncl.nth (html, ARGCHECK.n(nth, html), new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } public static Vector<HTMLNode> nthFromEnd (Vector<? extends HTMLNode> html, int nth, int sPos, int ePos, String... htmlTags) { return TNPollIncl.nthFromEnd (html, ARGCHECK.n(nth, html), new LV(html, sPos, ePos), ARGCHECK.htmlTags(htmlTags)); } } |