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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
package Torello.HTML.NodeSearch;

import Torello.Java.*;

import java.lang.reflect.Field;
import java.util.function.BiPredicate;

/**
 * A functional-interface / lambda-target that has many pre-instantiated instances that
 * essentially serves a simplified wrappers for the many {@code String} search and comparison
 * utilities provided in <CODE>Torello&#46;Java</CODE>.
 * 
 * <BR /><BR /><EMBED CLASS='external-html' DATA-FILE-ID=TextComparitor>
 */
@FunctionalInterface
public interface TextComparitor extends BiPredicate<String, String[]>, java.io.Serializable
{
    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDFI>  */
    public static final long serialVersionUID = 1;

    /**
     * <EMBED CLASS='external-html' DATA-FILE-ID=FUNC_INTER_METH>
     * 
     * @param str This is usually a line of text from the {@code public final String str} field of
     * the class {@code TextNode}, if the programmer is requesting a {@code TextNode} search.  If
     * the search being performed is on {@code TagNode} attribute values, then the value of
     * parameter {@code String htmlText} will be any {@code String}-text within an HTML Element's
     * attribute <B STYLE="color: red;">value</B>.
     * 
     * @param compareText This is a list of different text-{@code String's} to be used by the 
     * method that performs the test.  View the compare-{@code String's} in the methods of classes
     * {@link StrCmpr} or {@link StrTokCmpr} to understand this more clearly.
     * 
     * @return After performing the single-input-parameter "version of" the
     * {@code accept(htmlText, compareText)} method on as many of the elements of the
     * {@code String[] compareText} input-array, this will return {@code TRUE} or {@code FALSE}
     * dependent on the expected boolean-logic behavior of the comparison.  This is simple, as the
     * four primary {@code boolean} operations: {@code AND, OR, NAND, XOR} are provided as
     * pre-defined methods here.
     * 
     * <BR /><BR /><B>NOTE: </B>All boolean evaluations done are <I>short-circuit evaluations</I>.
     * As soon as a function result-value is known, it will be returned.
     * <BR /><B>ALSO: </B>Loops begin with the first element of the {@code String[] compareText}
     * array, and stop with the last element.      
     */
    public boolean test(String str, String[] compareText);

    // ***************************************************************************************************
    // Specialized CSS Class Testers.
    // ***************************************************************************************************

    /**
     * This will check that <I><B>at least one of</I></B> the named/provided
     * "Compare-{@code String's}" are present, as tokens not substrings, in the
     * CSS-Class-{@code String} of an HTML Element.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see StrTokCmpr#containsOR(String, String[])
     */
    public static final TextComparitor CONTAINS_CSS_CLASS_OR = StrTokCmpr::containsOR;

    /**
     * This will check that <I><B>all / every-one-of</I></B> the named/provided
     * "Compare-{@code String's}" are present, as tokens not substrings, in the
     * CSS-Class-{@code String} of an HTML Element.
     *
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see StrTokCmpr#containsAND(String, String[])
     */
    public static final TextComparitor CONTAINS_CSS_CLASS_AND = StrTokCmpr::containsAND;

    /**
     * This will check that <I><B>none of</I></B> the named/provided "Compare-{@code String's}" are
     * present, as tokens not substrings, in the CSS-Class-{@code String} of an HTML Element.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see StrTokCmpr#containsNAND(String, String[])
     */
    public static final TextComparitor CONTAINS_CSS_CLASS_NAND = StrTokCmpr::containsNAND;

    /**
     * This will check that <I><B>exactly one of</I></B> the named/provided
     * "Compare-{@code String's}" are present, as tokens not substrings, in the
     * CSS-Class-{@code String} of an HTML Element.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see StrTokCmpr#containsXOR(String, String[])
     */
    public static final TextComparitor CONTAINS_CSS_CLASS_XOR = StrTokCmpr::containsXOR;

    /**
     * This is used as an "abbreviation" to save typing (for convenience).  It can reduce, however,
     * readability.
     * 
     * <BR /><BR /><B>STANDARD-CSS:</B> The standard way to look for HTML Element matches using a
     * CSS-Selector is to use a boolean {@code 'or'}, not a boolean {@code 'and.'}
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see #CONTAINS_CSS_CLASS_OR
     */
    public static final TextComparitor C_OR = CONTAINS_CSS_CLASS_OR;

    /**
     * This is used as an "abbreviation" to save typing (for convenience).  It can reduce, however,
     * readability.  Since this is Java, not a CSS-Style-Sheet, this "selector"
     * ({@code java.util.function.BiPredicate}) allows the programmer the flexibility to build an
     * "AND" CSS-Class-Selector, rather than an "OR" CSS-Class-Selector.
     *
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see #CONTAINS_CSS_CLASS_AND
     */
    public static final TextComparitor C_AND = CONTAINS_CSS_CLASS_AND;

    /**
     * This is just used as an "abbreviation" to save typing (for convenience).  It can reduce,
     * however, readability.  Since this is Java, not a CSS-Style-Sheet, this "selector"
     * ({@code java.util.function.BiPredicate}) allows the programmer the flexibility to build a
     * "NAND" CSS-Class-Selector, rather than an "OR" CSS-Class-Selector.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see #CONTAINS_CSS_CLASS_NAND
     */
    public static final TextComparitor C_NAND = CONTAINS_CSS_CLASS_NAND;

    /**
     * This is just used as an "abbreviation" to save typing (for convenience).  It can reduce, 
     * however, readability.  Since this is Java, not a CSS-Style-Sheet, this "selector"
     * ({@code java.util.function.BiPredicate}) allows the programmer the flexibility to build an
     * "XOR" CSS-Class-Selector, rather than an "OR" CSS-Class-Selector.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see #CONTAINS_CSS_CLASS_XOR
     */
    public static final TextComparitor C_XOR = CONTAINS_CSS_CLASS_XOR;

    /**
     * This is used as an <B>EXTRA</B> "abbreviation" to save typing (for convenience).  It can
     * reduce, however, readability.
     * 
     * <BR /><BR /><B STYLE='color: red;'>STANDARD-CSS:</B> The standard way to look for HTML
     * Element matches using a CSS-Selector is to use a boolean {@code 'or'}, not a boolean
     * {@code 'and'}.
     * 
     * <BR /><BR /><B STYLE='color: red;'>ALSO:</B> CSS Classes are <B><I>not</I></B> case
     * insensitive.
     * 
     * <EMBED CLASS='external-html' DATA-FILE-ID=TCCSSTOK>
     * 
     * @see #C_OR
     * @see #CONTAINS_CSS_CLASS_OR
     */
    public static final TextComparitor C = C_OR;

    // ***************************************************************************************************
    // EQUALITY TESTING
    // ***************************************************************************************************

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.
     * 
     * @see StrCmpr#equalsXOR(String, String[])
     */
    public static final TextComparitor EQ = StrCmpr::equalsXOR;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.
     * 
     * @see StrCmpr#equalsNAND(String, String[])
     */
    public static final TextComparitor NOT_EQ = StrCmpr::equalsNAND;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  This function-pointer is identical to the one named {@link #NOT_EQ}.
     * 
     * @see StrCmpr#equalsNAND(String, String[])
     */
    public static final TextComparitor EQ_NAND = StrCmpr::equalsNAND;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.  In this function-pointer, the comparison performed
     * will ignore the case of the arguments.
     * 
     * @see StrCmpr#equalsXOR_CI(String, String[])
     */
    public static final TextComparitor EQ_CASE_INSENSITIVE = StrCmpr::equalsXOR_CI;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.  In this function-pointer, the comparison performed
     * will ignore the case of the arguments.  This is an abbreviated version of the identical
     * {@code TextComparitor} {@link #EQ_CASE_INSENSITIVE}.
     * 
     * @see StrCmpr#equalsXOR_CI(String, String[])
     */
    public static final TextComparitor EQ_CI = StrCmpr::equalsXOR_CI;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EQ_CASE_INSENSITIVE = StrCmpr::equalsNAND_CI;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.  This is an abbreviated version of the identical {@code TextComparitor}
     * {@link #NOT_EQ_CASE_INSENSITIVE}.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EQ_CI = StrCmpr::equalsNAND_CI;

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.  This is an abbreviated version of the identical {@code TextComparitor}
     * {@link #NOT_EQ_CASE_INSENSITIVE}.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor EQ_CI_NAND = StrCmpr::equalsNAND_CI;

    // ***************************************************************************************************
    // EQUALITY TESTING - WITH PRE TEXT CALL TO 'trim()'
    // ***************************************************************************************************

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.  Before the equality-comparison is performed, the
     * {@code java.lang.String.trim()} method will be invoked on the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsXOR(String, String[])
     */
    public static final TextComparitor EQ_TRM =
        (String s, String[] sArr) -> StrCmpr.equalsXOR(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  Before the equality-comparison is performed, the
     * {@code java.lang.String.trim()} method will be invoked on the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsNAND(String, String[])
     */
    public static final TextComparitor NOT_EQ_TRM = 
        (String s, String[] sArr) -> StrCmpr.equalsNAND(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  This function-pointer is identical to the one named {@link #NOT_EQ}.  Before
     * the equality-comparison is performed, the {@code java.lang.String.trim()} method will be
     * invoked on the attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsNAND(String, String[]) */
    public static final TextComparitor EQ_NAND_TRM = 
        (String s, String[] sArr) -> StrCmpr.equalsNAND(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.  In this function-pointer, the comparison performed
     * will ignore the case of the arguments.  Before the equality-comparison is performed, the
     * {@code java.lang.String.trim()} method will be invoked on the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsXOR_CI(String, String[])
     */
    public static final TextComparitor EQ_CASE_INSENSITIVE_TRIM = 
        (String s, String[] sArr) -> StrCmpr.equalsXOR_CI(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If precisely one of the compare-{@code String's} equal the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}, then and only then will this
     * {@code BiPredicate} return {@code TRUE}.  In this function-pointer, the comparison performed
     * will ignore the case of the arguments.  This is an abbreviated version of the identical
     * {@code TextComparitor} {@link #EQ_CASE_INSENSITIVE_TRIM}. Before the equality-comparison is
     * performed, the {@code java.lang.String.trim()} method will be invoked on the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsXOR_CI(String, String[])
     */
    public static final TextComparitor EQ_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.equalsXOR_CI(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.  Before the equality-comparison is performed, the {@code java.lang.String.trim()}
     * method will be invoked on the attribute-<B STYLE="color: red;">value</B> or
     * {@code TextNode}.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EQ_CASE_INSENSITIVE_TRIM = 
        (String s, String[] sArr) -> StrCmpr.equalsNAND_CI(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.  This is an abbreviated version of the identical {@code TextComparitor}
     * {@link #NOT_EQ_CASE_INSENSITIVE_TRIM}. Before the equality-comparison is performed, the
     * {@code java.lang.String.trim()} method will be invoked on the
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode}.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EQ_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.equalsNAND_CI(s.trim(), sArr);

    /**
     * Will compare an attribute-<B STYLE="color: red;">value</B> {@code String}, or
     * {@code TextNode} for equality against a list of possible {@code String}-match candidates.
     * If and only if none of the candidates are equal, can this {@code BiPredicate} evaluate to
     * {@code TRUE}.  In this function-pointer, the comparison performed will ignore the case of the
     * arguments.  Before the equality-comparison is performed, the {@code java.lang.String.trim()}
     * method will be invoked on the attribute-<B STYLE="color: red;">value</B> or
     * {@code TextNode}.
     * 
     * @see StrCmpr#equalsNAND_CI(String, String[])
     */
    public static final TextComparitor EQ_CI_NAND_TRM = 
        (String s, String[] sArr) -> StrCmpr.equalsNAND_CI(s.trim(), sArr);


    // ***************************************************************************************************
    // CONTAINS TESTING
    // ***************************************************************************************************

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether
     * it contains <I>at least one match</I> out of a list compare-{@code String's}.
     * 
     * @see StrCmpr#containsOR(String, String[])
     */
    public static final TextComparitor CONTAINS = StrCmpr::containsOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether
     * it contains <I>a match for every string</I> in the list compare-{@code String's}.
     * 
     * @see StrCmpr#containsAND(String, String[])
     */
    public static final TextComparitor CONTAINS_AND = StrCmpr::containsAND;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify if it
     * will <I>match precisely one and only one</I> {@code String} from a list of
     * compare-{@code String's}.
     * 
     * @see StrCmpr#containsXOR(String, String[])
     */
    public static final TextComparitor CONTAINS_XOR = StrCmpr::containsXOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it
     * <I>does not contain any matches</I> with the list of compare-{@code String's}.
     * 
     * @see StrCmpr#containsNAND(String, String[])
     */
    public static final TextComparitor CONTAINS_NAND = StrCmpr::containsNAND;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether
     * it contains <I>at least one match</I> out of a list of compare-{@code String's}.
     * 
     * @see StrCmpr#containsOR(String, String[]) 
     */
    public static final TextComparitor CONTAINS_OR = StrCmpr::containsOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether
     * it contains <I>at least one match</I> out of a list compare-{@code String's}.  This field
     * instance has an abbreviated name (for convenience), but identical function-pointer to
     * {@link #CONTAINS} (and also {@link #CONTAINS_OR}).
     * 
     * @see StrCmpr#containsOR(String, String[])
     */
    public static final TextComparitor CN = StrCmpr::containsOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether
     * it contains <I>at least one match</I> out of a list compare-{@code String's}.  This field
     * instance has an abbreviated name (for convenience), but identical function-pointer to
     * {@link #CONTAINS_OR} (and also {@link #CONTAINS}).
     * 
     * @see StrCmpr#containsOR(String, String[])
     */
    public static final TextComparitor CN_OR = StrCmpr::containsOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it
     * <I>does not contain any matches</I> with the list of compare-{@code String's}.  This field
     * instance has an abbreviated name (for convenience), but identical function-pointer to
     * {@link #CONTAINS_AND}.
     * 
     * @see StrCmpr#containsAND(String, String[])
     */
    public static final TextComparitor CN_AND = StrCmpr::containsAND;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify if it
     * will <I>match precisely one and only one</I> {@code String} from a list of
     * compare-{@code String's}. This field instance has an abbreviated name (for convenience), but
     * identical function-pointer to {@link #CONTAINS_XOR}.
     * 
     * @see StrCmpr#containsXOR(String, String[])
     */
    public static final TextComparitor CN_XOR = StrCmpr::containsXOR;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it
     * <I>does not contain any matches</I> with the list of compare-{@code String's}.  This field
     * instance has an abbreviated name (for convenience), but identical function-pointer to
     * {@link #CONTAINS_NAND}.
     * 
     * @see StrCmpr#containsNAND(String, String[])
     */
    public static final TextComparitor CN_NAND = StrCmpr::containsNAND;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it
     * <I>does not contain any matches</I> with the list of compare-{@code String's}.  This field
     * instance differs in name only with other pre-defined {@code static} fields in this class. 
     * It's function pointer is identical to: {@link #CN_NAND}, {@link #CONTAINS_NAND} and
     * {@link #DOES_NOT_CONTAIN}.
     * 
     * @see StrCmpr#containsNAND(String, String[])
     */
    public static final TextComparitor NOT_CN = StrCmpr::containsNAND;

    /**
     * Checks an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it
     * <I>does not contain any matches</I> with the list of compare-{@code String's}.  It's
     * function pointer is identical to: {@link #CN_NAND}, {@link #CONTAINS_NAND} and
     * {@link #NOT_CN}.
     * 
     * @see StrCmpr#containsNAND(String, String[])
     */
    public static final TextComparitor DOES_NOT_CONTAIN = StrCmpr::containsNAND;


    // ***************************************************************************************************
    // CONTAINS TESTING - Case Insensitive versions
    // ***************************************************************************************************

    /**
     * Similar to {@code public static} field {@link #CONTAINS}, this function-pointer checks an 
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether it
     * contains <I>at least one match</I> out of a list compare-{@code String's}.  The difference
     * between this field and the aforementioned {@code public static} field is that this one
     * ({@code 'CONTAINS_CASE_INSENSITIVE'}) ignores the case of the lettering when performing the
     * {@code String} comparisons. 
     * 
     * @see StrCmpr#containsOR_CI(String, String[])
     */
    public static final TextComparitor CONTAINS_CASE_INSENSITIVE = StrCmpr::containsOR_CI;

    /**
     * Just like {@code public static} field {@link #CONTAINS_AND}, this function-pointer checks an
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether it
     * contains <I>a match for every string</I> in the list compare-{@code String's}.  The
     * difference between this field and the aforementioned {@code public static} field is that
     * this one ({@code 'CONTAINS_CASE_INSENSITIVE_AND'}) ignores the case of the lettering when
     * performing the {@code String} comparisons. 
     * 
     * @see StrCmpr#containsAND_CI(String, String[])
     */
    public static final TextComparitor CONTAINS_CASE_INSENSITIVE_AND = StrCmpr::containsAND_CI;

    /**
     * Similar to {@code public static} field {@link #CONTAINS_XOR}, this function-pointer checks
     * an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify if it will
     * <I>match precisely one and only one</I> {@code String} from a list of
     * compare-{@code String's}. The difference between this field and the aforementioned
     * {@code public static} field is that this one ({@code 'CONTAINS_CASE_INSENSITIVE_XOR'})
     * ignores the case of the lettering when performing the {@code String} comparisons. 
     * 
     * @see StrCmpr#containsXOR_CI(String, String[])
     */
    public static final TextComparitor CONTAINS_CASE_INSENSITIVE_XOR = StrCmpr::containsXOR_CI;

    /**
     * Just like {@code public static} field {@link #CONTAINS_NAND}, this function pointer checks
     * an attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to ensure that it <I>does
     * not contain any matches</I> with the list of compare-{@code String's}.  The difference
     * between this field and the aforementioned {@code public static} field is that this one
     * ({@code 'CONTAINS_CASE_INSENSITIVE_NAND'}) ignores the case of the lettering when performing
     * the {@code String} comparisons. 
     * 
     * @see StrCmpr#containsNAND_CI(String, String[])
     */
    public static final TextComparitor CONTAINS_CASE_INSENSITIVE_NAND = StrCmpr::containsNAND_CI;

    /**
     * Similar to {@code public static} field {@link #CONTAINS_OR}, this function-pointer checks an
     * attribute-<B STYLE="color: red;">value</B> or {@code TextNode} to identify whether it
     * contains <I>at least one match</I> out of a list of compare-{@code String's}.  The
     * difference between this field and the aforementioned {@code public static} field is that
     * this one ({@code 'CONTAINS_CASE_INSENSITIVE_OR'}) ignores the case of the lettering when
     * performing the {@code String} comparisons. 
     * 
     * @see StrCmpr#containsOR_CI(String, String[])
     */
    public static final TextComparitor CONTAINS_CASE_INSENSITIVE_OR = StrCmpr::containsOR_CI;

    /**
     * This function pointer's name is just an abbreviation for the {@code public static} field
     * named {@link #CONTAINS_CASE_INSENSITIVE}.  It points to the same method in {@code class
     * StrCmpr}.
     * 
     * @see StrCmpr#containsOR_CI(String, String[])
     */
    public static final TextComparitor CN_CI = StrCmpr::containsOR_CI;

    /**
     * This function pointer's name is just an abbreviation for the {@code public static} field
     * named {@link #CONTAINS_CASE_INSENSITIVE_OR}.  It points to the same method in {@code class
     * StrCmpr}.
     * 
     * @see StrCmpr#containsOR_CI(String, String[])
     */
    public static final TextComparitor CN_CI_OR = StrCmpr::containsOR_CI;

    /**
     * This function pointer's name is just an abbreviation for the {@code public static} field
     * named {@link #CONTAINS_CASE_INSENSITIVE_AND}.  It points to the same method in {@code class
     * StrCmpr}.
     * 
     * @see StrCmpr#containsAND_CI(String, String[])
     */
    public static final TextComparitor CN_CI_AND = StrCmpr::containsAND_CI;

    /**
     * This function pointer's name is just an abbreviation for the {@code public static} field
     * named {@link #CONTAINS_CASE_INSENSITIVE_XOR}.  It points to the same method in {@code class
     * StrCmpr}.
     * 
     * @see StrCmpr#containsXOR_CI(String, String[])
     */
    public static final TextComparitor CN_CI_XOR = StrCmpr::containsXOR_CI;

    /**
     * This function pointer's name is just an abbreviation for the {@code public static} field
     * named {@link #CONTAINS_CASE_INSENSITIVE_NAND}.  It points to the same method in {@code class
     * StrCmpr}.
     * 
     * @see StrCmpr#containsNAND_CI(String, String[])
     */
    public static final TextComparitor CN_CI_NAND = StrCmpr::containsNAND_CI;

    /**
     * This function pointer checks an attribute-<B STYLE="color: red;">value</B> or
     * {@code TextNode} to ensure that it <I>does not contain any matches</I> with the list of
     * compare-{@code String's}. The comparisons method used ignores the case of the text in the
     * string parameters.  Do note that all four of the following {@code static} fields
     * {@link #NOT_CN_CI}, {@link #DOES_NOT_CONTAIN_CASE_INSENSITIVE}, {@link #CN_CI_NAND} and
     * {@link #CONTAINS_CASE_INSENSITIVE_NAND} point to the same {@code StrCmpr} method.  Since the
     * variable names trade-off readability and brevity, this is done for convenience.
     * 
     * @see StrCmpr#containsNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_CN_CI = StrCmpr::containsNAND_CI;

    /**
     * This function pointer checks an attribute-<B STYLE="color: red;">value</B> or
     * {@code TextNode} to ensure that it <I>does not contain any matches</I> with the list of
     * compare-{@code String's}. The comparisons method used ignores the case of the text in the
     * string parameters.  Do note that all four of the following {@code static} fields
     * {@link #NOT_CN_CI}, {@link #DOES_NOT_CONTAIN_CASE_INSENSITIVE}, {@link #CN_CI_NAND},
     * and {@link #CONTAINS_CASE_INSENSITIVE_NAND} point to the same {@code StrCmpr} method.
     * Since the variable names trade-off readability and brevity, this is done for convenience.
     * 
     * @see StrCmpr#containsNAND_CI(String, String[])
     */
    public static final TextComparitor DOES_NOT_CONTAIN_CASE_INSENSITIVE = 
        StrCmpr::containsNAND_CI;


    // ***************************************************************************************************
    // START-WITH
    // ***************************************************************************************************

    /**
     * Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) will <I>match with precisely one</I>
     * of the java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithXOR(String, String[])
     */
    public static final TextComparitor STARTS_WITH = StrCmpr::startsWithXOR;

    /**
     * Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor DOES_NOT_START_WITH = StrCmpr::startsWithNAND;

    /**
     * Nearly identical to {@link #STARTS_WITH}, but here the function-pointer points to a method
     * that ignores case when performing the comparisons.  This {@code public static} field checks
     * an input 'source {@code String}' (usually an inner-tag <B STYLE="color: red;">value</B> or a
     * {@code TextNode}) to verify that the initial characters (the 'start' of the
     * source-{@code String}) will <I>match with precisely one</I> of the java {@code var-args
     * String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithXOR_CI(String, String[])
     */
    public static final TextComparitor STARTS_WITH_CASE_INSENSITIVE = StrCmpr::startsWithXOR_CI;

    /**
     * Nearly identical to {@link #DOES_NOT_START_WITH}, but here the function-pointer points to a
     * method that ignores case when performing the comparisons.  This {@code public static} field
     * checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor DOES_NOT_START_WITH_CASE_INSENSITIVE = 
        StrCmpr::startsWithNAND_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field
     * {@link #STARTS_WITH}.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;"> value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) will <I>match with precisely one</I>
     * of the java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithXOR(String, String[])
     */
    public static final TextComparitor SW = StrCmpr::startsWithXOR;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_START_WITH}.
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_START_WITH}</LI>
     *      <LI>{@link #NOT_SW}</LI>
     *      <LI>{@link #SW_NAND}</LI>
     *      <LI>{@link StrCmpr#startsWithNAND(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor NOT_SW = StrCmpr::startsWithNAND;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_START_WITH}.  
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_START_WITH}</LI>
     *      <LI>{@link #NOT_SW}</LI>
     *      <LI>{@link #SW_NAND}</LI>
     *      <LI>{@link StrCmpr#startsWithNAND(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag 
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor SW_NAND = StrCmpr::startsWithNAND;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #STARTS_WITH_CASE_INSENSITIVE}.
     * 
     * <BR /><BR />Nearly identical to {@link #STARTS_WITH}, but here the function-pointer points
     * to a method that ignores case when performing the comparisons.  This {@code public static}
     * field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) will <I>match with precisely one</I>
     * of the java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithXOR_CI(String, String[])
     */
    public static final TextComparitor SW_CI = StrCmpr::startsWithXOR_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_START_WITH_CASE_INSENSITIVE}.  
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_START_WITH_CASE_INSENSITIVE}</LI>
     *      <LI>{@link #NOT_SW_CI}</LI>
     *      <LI>{@link #SW_CI_NAND}</LI>
     *      <LI>{@link StrCmpr#startsWithNAND_CI(String, String[])}</LI>
     * </UL>
     * 
     * <BR /> They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Nearly identical to {@link #DOES_NOT_START_WITH}, but here the function-pointer
     * points to a method that ignores case when performing the comparisons.  This {@code public
     * static} field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_SW_CI = StrCmpr::startsWithNAND_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_START_WITH_CASE_INSENSITIVE}.
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_START_WITH_CASE_INSENSITIVE}</LI>
     *      <LI>{@link #NOT_SW_CI}</LI>
     *      <LI>{@link #SW_CI_NAND}</LI>
     *      <LI>{@link StrCmpr#startsWithNAND_CI(String, String[])}</LI>
     * </UL>
     * 
     * <BR /><BR /> They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Nearly identical to {@link #DOES_NOT_START_WITH}, but here the function-pointer
     * points to a method that ignores case when performing the comparisons.  This {@code public
     * static} field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the initial
     * characters (the 'start' of the source-{@code String}) <I>will not match with any</I> of the
     * java {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor SW_CI_NAND = StrCmpr::startsWithNAND_CI;


    // ***************************************************************************************************
    // START-WITH
    // ***************************************************************************************************

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #STARTS_WITH}.
     * 
     * @see StrCmpr#startsWithXOR(String, String[])
     */
    public static final TextComparitor STARTS_WITH_TRIM = 
        (String s, String[] sArr) -> StrCmpr.startsWithXOR(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #DOES_NOT_START_WITH}.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor DOES_NOT_START_WITH_TRIM =
        (String s, String[] sArr) -> StrCmpr.startsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #STARTS_WITH_CASE_INSENSITIVE}.
     * 
     * @see StrCmpr#startsWithXOR_CI(String, String[])
     */
    public static final TextComparitor STARTS_WITH_CASE_INSENSITIVE_TRIM =
        (String s, String[] sArr) -> StrCmpr.startsWithXOR_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #DOES_NOT_START_WITH_CASE_INSENSITIVE}.
     * 
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor DOES_NOT_START_WITH_CASE_INSENSITIVE_TRIM =
        (String s, String[] sArr) -> StrCmpr.startsWithNAND_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #SW}.
     * 
     * @see StrCmpr#startsWithXOR(String, String[])
     */
    public static final TextComparitor SW_TRM =
        (String s, String[] sArr) -> StrCmpr.startsWithXOR(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #NOT_SW}.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor NOT_SW_TRM = 
        (String s, String[] sArr) -> StrCmpr.startsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #SW_NAND}.
     * 
     * @see StrCmpr#startsWithNAND(String, String[])
     */
    public static final TextComparitor SW_NAND_TRM = 
        (String s, String[] sArr) -> StrCmpr.startsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #SW_CI}.
     * 
     * @see StrCmpr#startsWithXOR_CI(String, String[])
     */
    public static final TextComparitor SW_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.startsWithXOR_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #NOT_SW_CI}.
     * 
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_SW_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.startsWithNAND_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #SW_CI_NAND}.
     * 
     * @see #SW_CI_NAND
     * @see StrCmpr#startsWithNAND_CI(String, String[])
     */
    public static final TextComparitor SW_CI_NAND_TRM = 
        (String s, String[] sArr) -> StrCmpr.startsWithNAND_CI(s.trim(), sArr);


    // ***************************************************************************************************
    // END-WITH
    // ***************************************************************************************************

    /**
     * Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) will <I>match with precisely one</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithXOR(String, String[])
     */
    public static final TextComparitor ENDS_WITH = StrCmpr::endsWithXOR;

    /**
     * Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor DOES_NOT_END_WITH = StrCmpr::endsWithNAND;

    /**
     * Nearly identical to {@link #ENDS_WITH}, but here the function-pointer points to a method
     * that ignores case when performing the comparisons.  This {@code public static} field checks
     * an input 'source {@code String}' (usually an inner-tag <B STYLE="color: red;">value</B> or a
     * {@code TextNode}) to verify that the ending characters (the 'tail' of the
     * source-{@code String}) will <I>match with precisely one</I> of the java {@code var-args
     * String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithXOR_CI(String, String[])
     */
    public static final TextComparitor ENDS_WITH_CASE_INSENSITIVE = StrCmpr::endsWithXOR_CI;

    /**
     * Nearly identical to {@link #DOES_NOT_END_WITH}, but here the function-pointer points to a
     * method that ignores case when performing the comparisons.  This {@code public static} field
     * checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor DOES_NOT_END_WITH_CASE_INSENSITIVE = 
        StrCmpr::endsWithNAND_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field
     * {@link #ENDS_WITH}.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) will <I>match with precisely one</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithXOR(String, String[])
     */
    public static final TextComparitor EW = StrCmpr::endsWithXOR;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_END_WITH}.  
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_END_WITH}</LI>
     *      <LI>{@link #NOT_EW}</LI>
     *      <LI>{@link #EW_NAND}</LI>
     *      <LI>{@link StrCmpr#endsWithNAND(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor NOT_EW = StrCmpr::endsWithNAND;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_END_WITH}.
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_END_WITH}</LI>
     *      <LI>{@link #NOT_EW}</LI>
     *      <LI>{@link #EW_NAND}</LI>
     *      <LI>{@link StrCmpr#endsWithNAND(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Checks an input 'source {@code String}' (usually an inner-tag 
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor EW_NAND = StrCmpr::endsWithNAND;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #ENDS_WITH_CASE_INSENSITIVE}.
     * 
     * <BR /><BR />Nearly identical to {@link #ENDS_WITH}, but here the function-pointer points to
     * a method that ignores case when performing the comparisons.  This {@code public static}
     * field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) will <I>match with precisely one</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithXOR_CI(String, String[])
     */
    public static final TextComparitor EW_CI = StrCmpr::endsWithXOR_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_END_WITH_CASE_INSENSITIVE}.
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_END_WITH_CASE_INSENSITIVE}</LI>
     *      <LI>{@link #NOT_EW_CI}</LI>
     *      <LI>{@link #EW_CI_NAND}</LI>
     *      <LI>{@link StrCmpr#endsWithNAND_CI(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Nearly identical to {@link #DOES_NOT_END_WITH}, but here the function-pointer 
     * points to a method that ignores case when performing the comparisons.  This {@code public
     * static} field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java 
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EW_CI = StrCmpr::endsWithNAND_CI;

    /**
     * A static, function-pointer, field with an abbreviated name identical to field 
     * {@link #DOES_NOT_END_WITH_CASE_INSENSITIVE}.
     * 
     * <BR /><BR />In fact, the following are all identical method references:
     * 
     * <BR /><BR /><UL CLASS=JDUL>
     *      <LI>{@link #DOES_NOT_END_WITH_CASE_INSENSITIVE}</LI>
     *      <LI>{@link #NOT_EW_CI}</LI>
     *      <LI>{@link #EW_CI_NAND}</LI>
     *      <LI>{@link StrCmpr#endsWithNAND_CI(String, String[])}</LI>
     * </UL>
     * 
     * <BR />They are just abbreviated names to allow for trading-off 'code readability' and
     * brevity.
     * 
     * <BR /><BR />Nearly identical to {@link #DOES_NOT_END_WITH}, but here the function-pointer
     * points to a method that ignores case when performing the comparisons.  This {@code public
     * static} field checks an input 'source {@code String}' (usually an inner-tag
     * <B STYLE="color: red;">value</B> or a {@code TextNode}) to verify that the ending characters
     * (the 'tail' of the source-{@code String}) <I>will not match with any</I> of the java
     * {@code var-args String...} compare-{@code String's} list.
     * 
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor EW_CI_NAND = StrCmpr::endsWithNAND_CI;


    // ***************************************************************************************************
    // END-WITH
    // ***************************************************************************************************

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #ENDS_WITH}.
     * 
     * @see #ENDS_WITH
     * @see StrCmpr#endsWithXOR(String, String[])
     */
    public static final TextComparitor ENDS_WITH_TRIM = 
        (String s, String[] sArr) -> StrCmpr.endsWithXOR(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #DOES_NOT_END_WITH}.
     * 
     * @see #DOES_NOT_END_WITH
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor DOES_NOT_END_WITH_TRIM = 
        (String s, String[] sArr) -> StrCmpr.endsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #ENDS_WITH_CASE_INSENSITIVE}.
     * 
     * @see #ENDS_WITH_CASE_INSENSITIVE
     * @see StrCmpr#endsWithXOR_CI(String, String[])
     */
    public static final TextComparitor ENDS_WITH_CASE_INSENSITIVE_TRIM = 
        (String s, String[] sArr) -> StrCmpr.endsWithXOR_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #DOES_NOT_END_WITH_CASE_INSENSITIVE}.
     * 
     * @see #DOES_NOT_END_WITH_CASE_INSENSITIVE
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor DOES_NOT_END_WITH_CASE_INSENSITIVE_TRIM = 
        (String s, String[] sArr) -> StrCmpr.endsWithNAND_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #EW}.
     * 
     * @see #EW
     * @see StrCmpr#endsWithXOR(String, String[])
     */
    public static final TextComparitor EW_TRM = 
        (String s, String[] sArr) -> StrCmpr.endsWithXOR(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #NOT_EW}.
     * 
     * @see #NOT_EW
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor NOT_EW_TRM = 
        (String s, String[] sArr) -> StrCmpr.endsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #EW_NAND}.
     * 
     * @see #EW_NAND
     * @see StrCmpr#endsWithNAND(String, String[])
     */
    public static final TextComparitor EW_NAND_TRM = 
        (String s, String[] sArr) -> StrCmpr.endsWithNAND(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #EW_CI}.
     * 
     * @see #EW_CI
     * @see StrCmpr#endsWithXOR_CI(String, String[])
     */
    public static final TextComparitor EW_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.endsWithXOR_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #NOT_EW_CI}.
     * 
     * @see #NOT_EW_CI
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor NOT_EW_CI_TRM = 
        (String s, String[] sArr) -> StrCmpr.endsWithNAND_CI(s.trim(), sArr);

    /**
     * Invokes {@code java.lang.String.trim()} on the first input-parameter; although the remainder
     * of this {@code BiPredicate<String, String[]} is identical to {@code public static} field
     * {@link #EW_CI_NAND}.
     * 
     * @see #EW_CI_NAND
     * @see StrCmpr#endsWithNAND_CI(String, String[])
     */
    public static final TextComparitor EW_CI_NAND_TRM =
        (String s, String[] sArr) -> StrCmpr.endsWithNAND_CI(s.trim(), sArr);



    /**
     * Helper / Convenience Method.  In almost all cases, this will return the actual field /
     * variable name of an instance of {@code TextComparitor}.  The lookup method uses Java
     * Reflection.  Internal exception &amp; error reporting logic makes use of this
     * method (where it works properly), but if this method is invoked on a user-supplied
     * {@code TextComparitor}, ths method will not be able to 'guess' the variable or field
     * name from whence that instance was derived or created.
     *
     * <BR /><BR /><B>USE:</B> For {@link TextComparitor#EQ_CASE_INSENSITIVE}, this method
     * returns the <B>Java {@code String}</B> {@code "EQ_CASE_INSENSITIVE"}.
     * 
     * <BR /><BR /><B>AGAIN:</B>There are <I>certain cases</I> where this method will fail.  The
     * test performed here uses a reference-equality comparison.  For instance, if the user
     * requests the name of a <I>"Serialized Version"</I> of a {@code TextComparitor}, then the
     * instance-reference loaded from a Serialized Object File, and the instance-reference stored
     * inside this class would be different.  If, indeed, there were two instances of
     * {@code 'TextComparitor.STARTS_WITH'} then the serialized version of
     * {@code 'TextComparitor.STARTS_WITH'} (when invoking this method) would not properly return
     * the {@code String 'STARTS_WITH'}
     *
     * <BR /><BR /><B>PRIMARILY:</B> This method is used by one of the exception reporting
     * mechanisms, and therefore neither relies nor requires serialized, saved, or user-created
     * {@code TextComparitor's}.  For those purposes, retreiving the {@code static} field-name
     * of the {@code TextComparitor's} that are passed here will work fine.
     *
     * <BR /><BR /><B><SPAN STYLE="color: red;">AGAIN:</B></SPAN> This method is used internally
     * for error-reporting.
     *
     * @param tc An instance of this class, {@code TextComparitor}, which is a also a
     * {@code static} field member of this class.
     * 
     * @return If the reference provided is one of the {@code static} fields which are defined
     * inside {@code TextComparitor}, then the name of that field, as a {@code java.lang.String},
     * will be returned.  If this is a user-defined {@code TextComparitor}, then it's name will
     * not be found, and 'null' shall be returned instead.
     *
     * <DIV CLASS="EXAMPLE">{@code
     * System.out.println(TextComparitor.getName(TextComparitor.EQ));
     * 
     * // Prints the String: "EQ"
     * }</DIV>
     */
    public static String getName(TextComparitor tc)
    {
        Field[] fArr = TextComparitor.class.getDeclaredFields();

        try
            { for (Field f : fArr) if (f.get(null) == tc) return f.getName(); }

        catch (IllegalAccessException e)
            { return null; }

        return null;
    }
}