-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathallclasses-index.html
More file actions
1318 lines (1318 loc) · 71.6 KB
/
allclasses-index.html
File metadata and controls
1318 lines (1318 loc) · 71.6 KB
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
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang>
<head>
<!-- Generated by javadoc -->
<title>All Classes (XMLUnit for Java 2.10.1 API)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="jquery/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="All Classes (XMLUnit for Java 2.10.1 API)";
}
}
catch(err) {
}
//-->
var data = {"i0":2,"i1":1,"i2":2,"i3":2,"i4":2,"i5":2,"i6":2,"i7":2,"i8":2,"i9":2,"i10":2,"i11":1,"i12":1,"i13":2,"i14":1,"i15":1,"i16":2,"i17":4,"i18":4,"i19":8,"i20":8,"i21":2,"i22":2,"i23":2,"i24":2,"i25":2,"i26":2,"i27":1,"i28":2,"i29":2,"i30":2,"i31":2,"i32":2,"i33":2,"i34":1,"i35":2,"i36":1,"i37":8,"i38":1,"i39":1,"i40":1,"i41":2,"i42":1,"i43":2,"i44":2,"i45":2,"i46":2,"i47":2,"i48":2,"i49":2,"i50":2,"i51":2,"i52":1,"i53":1,"i54":2,"i55":1,"i56":1,"i57":2,"i58":2,"i59":2,"i60":2,"i61":2,"i62":2,"i63":2,"i64":2,"i65":2,"i66":2,"i67":2,"i68":1,"i69":1,"i70":2,"i71":2,"i72":2,"i73":2,"i74":2,"i75":2,"i76":2,"i77":2,"i78":2,"i79":1,"i80":2,"i81":2,"i82":2,"i83":2,"i84":2,"i85":2,"i86":2,"i87":1,"i88":2,"i89":1,"i90":2,"i91":2,"i92":2,"i93":2,"i94":1,"i95":2,"i96":2,"i97":2,"i98":2,"i99":2,"i100":2,"i101":2,"i102":2,"i103":2,"i104":1,"i105":2,"i106":2,"i107":1,"i108":8,"i109":2,"i110":2,"i111":2,"i112":1,"i113":2,"i114":1,"i115":2,"i116":2,"i117":2,"i118":2,"i119":2,"i120":2,"i121":2,"i122":2,"i123":2,"i124":2,"i125":2,"i126":2,"i127":2,"i128":2,"i129":2,"i130":2,"i131":2,"i132":2,"i133":2,"i134":2,"i135":2,"i136":2,"i137":2,"i138":2,"i139":2,"i140":2,"i141":2,"i142":2,"i143":2,"i144":2,"i145":1,"i146":1,"i147":2,"i148":1,"i149":2,"i150":2,"i151":2,"i152":2,"i153":2,"i154":2,"i155":2,"i156":4,"i157":2,"i158":2,"i159":2,"i160":2,"i161":2,"i162":2,"i163":2,"i164":2,"i165":2,"i166":2,"i167":2,"i168":1,"i169":2,"i170":2,"i171":8,"i172":8,"i173":2,"i174":8,"i175":2,"i176":2,"i177":1,"i178":1,"i179":1,"i180":8,"i181":2,"i182":2,"i183":2,"i184":2,"i185":1};
var tabs = {65535:["t0","All Classes"],1:["t1","Interface Summary"],2:["t2","Class Summary"],4:["t3","Enum Summary"],8:["t4","Exception Summary"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "./";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="index.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses.html">All Classes</a></li>
</ul>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<main role="main">
<div class="header">
<h1 title="All&nbsp;Classes" class="title">All Classes</h1>
</div>
<div class="allClassesContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary">
<caption><span id="t0" class="activeTableTab"><span>All Classes</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Interface Summary</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Class Summary</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Enum Summary</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Exception Summary</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/AbstractDifferenceEngine.html" title="class in org.xmlunit.diff">AbstractDifferenceEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Useful base-implementation of some parts of the DifferenceEngine
interface.</div>
</th>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/AbstractDifferenceEngine.DeferredComparison.html" title="interface in org.xmlunit.diff">AbstractDifferenceEngine.DeferredComparison</a></td>
<th class="colLast" scope="row">
<div class="block">Encapsulates a comparison that may or may not be performed.</div>
</th>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/AbstractNodeTester.html" title="class in org.custommonkey.xmlunit">AbstractNodeTester</a></td>
<th class="colLast" scope="row">
<div class="block">Helper class.</div>
</th>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ByNameAndTextRecSelector.html" title="class in org.xmlunit.diff">ByNameAndTextRecSelector</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/diff/ElementSelector.html" title="interface in org.xmlunit.diff"><code>ElementSelector</code></a> that allows two elements to be compared if
their name (including namespace URI, if any) and textual content is
the same and the same is true for all child elements recursively.</div>
</th>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/CaseInsensitiveDifferenceListener.html" title="class in org.custommonkey.xmlunit.examples">CaseInsensitiveDifferenceListener</a></td>
<th class="colLast" scope="row">
<div class="block">Ignores case for all textual content.</div>
</th>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/input/CommentLessSource.html" title="class in org.xmlunit.input">CommentLessSource</a></td>
<th class="colLast" scope="row">
<div class="block">A source that is obtained from a different source by stripping all
comments.</div>
</th>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/CompareAssert.html" title="class in org.xmlunit.assertj">CompareAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for XMLs comparison.</div>
</th>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/CompareAssert.html" title="class in org.xmlunit.assertj3">CompareAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for XMLs comparison.</div>
</th>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><a href="org/xmlunit/matchers/CompareMatcher.html" title="class in org.xmlunit.matchers">CompareMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">This Hamcrest <code>Matcher</code> compares two XML sources with each others.</div>
</th>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/Comparison.html" title="class in org.xmlunit.diff">Comparison</a></td>
<th class="colLast" scope="row">
<div class="block">Details of a single comparison XMLUnit has performed.</div>
</th>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/Comparison.Detail.html" title="class in org.xmlunit.diff">Comparison.Detail</a></td>
<th class="colLast" scope="row">
<div class="block">The details of a target (usually some representation of an XML
Node) that took part in the comparison.</div>
</th>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/ComparisonController.html" title="interface in org.custommonkey.xmlunit">ComparisonController</a></td>
<th class="colLast" scope="row">
<div class="block">Callback interface used by DifferenceEngine to determine whether to halt the
node-by-node comparison of two pieces of XML</div>
</th>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonController.html" title="interface in org.xmlunit.diff">ComparisonController</a></td>
<th class="colLast" scope="row">
<div class="block">Decides whether the difference engine should stop the whole
comparison process because of the current difference.</div>
</th>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonControllers.html" title="class in org.xmlunit.diff">ComparisonControllers</a></td>
<th class="colLast" scope="row">
<div class="block">Controllers used for the base cases.</div>
</th>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonFormatter.html" title="interface in org.xmlunit.diff">ComparisonFormatter</a></td>
<th class="colLast" scope="row">
<div class="block">Formatter methods for a <a href="org/xmlunit/diff/Comparison.html" title="class in org.xmlunit.diff"><code>Comparison</code></a> Object.</div>
</th>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonListener.html" title="interface in org.xmlunit.diff">ComparisonListener</a></td>
<th class="colLast" scope="row">
<div class="block">Is notified of comparisions and their results.</div>
</th>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonListenerSupport.html" title="class in org.xmlunit.diff">ComparisonListenerSupport</a></td>
<th class="colLast" scope="row">
<div class="block">Encapsulates support for <a href="org/xmlunit/diff/ComparisonListener.html" title="interface in org.xmlunit.diff"><code>ComparisonListener</code></a>s so it can be
reused by different implementations of <a href="org/xmlunit/diff/DifferenceEngine.html" title="interface in org.xmlunit.diff"><code>DifferenceEngine</code></a>.</div>
</th>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonResult.html" title="enum in org.xmlunit.diff">ComparisonResult</a></td>
<th class="colLast" scope="row">
<div class="block">The possible outcomes of a comparision.</div>
</th>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ComparisonType.html" title="enum in org.xmlunit.diff">ComparisonType</a></td>
<th class="colLast" scope="row">
<div class="block">The kinds of comparisons XMLUnit performs.</div>
</th>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/exceptions/ConfigurationException.html" title="class in org.custommonkey.xmlunit.exceptions">ConfigurationException</a></td>
<th class="colLast" scope="row">
<div class="block">Exception thrown when an XML parser-, transformer- or XPath-factory
throws a configuration exception.</div>
</th>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><a href="org/xmlunit/ConfigurationException.html" title="class in org.xmlunit">ConfigurationException</a></td>
<th class="colLast" scope="row">
<div class="block">Exception thrown when anything inside JAXP throws a
*ConfigurationException.</div>
</th>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/util/Convert.html" title="class in org.xmlunit.util">Convert</a></td>
<th class="colLast" scope="row">
<div class="block">Conversion methods.</div>
</th>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/CountingNodeTester.html" title="class in org.custommonkey.xmlunit.examples">CountingNodeTester</a></td>
<th class="colLast" scope="row">
<div class="block">Counts the number of nodes in a document to allow assertions to be made
using a NodeTest.</div>
</th>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/DefaultComparisonFormatter.html" title="class in org.xmlunit.diff">DefaultComparisonFormatter</a></td>
<th class="colLast" scope="row">
<div class="block">Formatter methods for a <a href="org/xmlunit/diff/Comparison.html" title="class in org.xmlunit.diff"><code>Comparison</code></a> Object.</div>
</th>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/javax_jaxb/DefaultJaxbBuilderFactory.html" title="class in org.xmlunit.builder.javax_jaxb">DefaultJaxbBuilderFactory</a></td>
<th class="colLast" scope="row">
<div class="block">Default implementation that uses <code>javax.xml.bind</code>.</div>
</th>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/DefaultNodeMatcher.html" title="class in org.xmlunit.diff">DefaultNodeMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">Default implemetation of <a href="org/xmlunit/diff/NodeMatcher.html" title="interface in org.xmlunit.diff"><code>NodeMatcher</code></a> that matches control
and tests nodes for comparison with the help of <a href="org/xmlunit/diff/DefaultNodeMatcher.NodeTypeMatcher.html" title="interface in org.xmlunit.diff"><code>DefaultNodeMatcher.NodeTypeMatcher</code></a> and <a href="org/xmlunit/diff/ElementSelector.html" title="interface in org.xmlunit.diff"><code>ElementSelector</code></a>s.</div>
</th>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/DefaultNodeMatcher.DefaultNodeTypeMatcher.html" title="class in org.xmlunit.diff">DefaultNodeMatcher.DefaultNodeTypeMatcher</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/diff/DefaultNodeMatcher.NodeTypeMatcher.html" title="interface in org.xmlunit.diff"><code>DefaultNodeMatcher.NodeTypeMatcher</code></a> that marks pairs of nodes of the same
node type as well as pairs of CDATA sections and text nodes as
eligible.</div>
</th>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/DefaultNodeMatcher.NodeTypeMatcher.html" title="interface in org.xmlunit.diff">DefaultNodeMatcher.NodeTypeMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">Determines whether two Nodes are eligible for comparison based
on their node type.</div>
</th>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DetailedDiff.html" title="class in org.custommonkey.xmlunit">DetailedDiff</a></td>
<th class="colLast" scope="row">
<div class="block">Compares and describes all the differences between two XML documents.</div>
</th>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/Diff.html" title="class in org.custommonkey.xmlunit">Diff</a></td>
<th class="colLast" scope="row">
<div class="block">Compares and describes any difference between XML documents.</div>
</th>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/Diff.html" title="class in org.xmlunit.diff">Diff</a></td>
<th class="colLast" scope="row">
<div class="block">The Diff-Object is the result of two comparisons.</div>
</th>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/DiffBuilder.html" title="class in org.xmlunit.builder">DiffBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">DiffBuilder to create a <a href="org/xmlunit/diff/Diff.html" title="class in org.xmlunit.diff"><code>Diff</code></a> instance.</div>
</th>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/Difference.html" title="class in org.custommonkey.xmlunit">Difference</a></td>
<th class="colLast" scope="row">
<div class="block">Value object that describes a difference between DOM Nodes using one of
the DifferenceConstants ID values and a NodeDetail instance.</div>
</th>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/Difference.html" title="class in org.xmlunit.diff">Difference</a></td>
<th class="colLast" scope="row">
<div class="block">Combines a <a href="org/xmlunit/diff/Comparison.html" title="class in org.xmlunit.diff"><code>Comparison</code></a> and its <a href="org/xmlunit/diff/ComparisonResult.html" title="enum in org.xmlunit.diff"><code>result</code></a>.</div>
</th>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DifferenceConstants.html" title="interface in org.custommonkey.xmlunit">DifferenceConstants</a></td>
<th class="colLast" scope="row">
<div class="block">Constants for describing differences between DOM Nodes.</div>
</th>
</tr>
<tr id="i35" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DifferenceEngine.html" title="class in org.custommonkey.xmlunit">DifferenceEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Class that has responsibility for comparing Nodes and notifying a
DifferenceListener of any differences or dissimilarities that are found.</div>
</th>
</tr>
<tr id="i36" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/DifferenceEngine.html" title="interface in org.xmlunit.diff">DifferenceEngine</a></td>
<th class="colLast" scope="row">
<div class="block">XMLUnit's difference engine.</div>
</th>
</tr>
<tr id="i37" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DifferenceEngine.DifferenceFoundException.html" title="class in org.custommonkey.xmlunit">DifferenceEngine.DifferenceFoundException</a></td>
<th class="colLast" scope="row">
<div class="block">Marker exception thrown by the protected compare() method and passed
upwards through the call stack to the public compare() method.</div>
</th>
</tr>
<tr id="i38" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/DifferenceEngineConfigurer.html" title="interface in org.xmlunit.builder">DifferenceEngineConfigurer</a><<a href="org/xmlunit/builder/DifferenceEngineConfigurer.html" title="type parameter in DifferenceEngineConfigurer">D</a> extends <a href="org/xmlunit/builder/DifferenceEngineConfigurer.html" title="interface in org.xmlunit.builder">DifferenceEngineConfigurer</a><<a href="org/xmlunit/builder/DifferenceEngineConfigurer.html" title="type parameter in DifferenceEngineConfigurer">D</a>>></td>
<th class="colLast" scope="row">
<div class="block">Subset of the configuration options available for a <a href="org/xmlunit/diff/DifferenceEngine.html" title="interface in org.xmlunit.diff"><code>DifferenceEngine</code></a>.</div>
</th>
</tr>
<tr id="i39" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DifferenceEngineContract.html" title="interface in org.custommonkey.xmlunit">DifferenceEngineContract</a></td>
<th class="colLast" scope="row">
<div class="block">The pieces of DifferenceEngine's API used by Diff.</div>
</th>
</tr>
<tr id="i40" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/DifferenceEvaluator.html" title="interface in org.xmlunit.diff">DifferenceEvaluator</a></td>
<th class="colLast" scope="row">
<div class="block">May decide to up- or downgrade the severity of a difference.</div>
</th>
</tr>
<tr id="i41" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/DifferenceEvaluators.html" title="class in org.xmlunit.diff">DifferenceEvaluators</a></td>
<th class="colLast" scope="row">
<div class="block">Evaluators used for the base cases.</div>
</th>
</tr>
<tr id="i42" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DifferenceListener.html" title="interface in org.custommonkey.xmlunit">DifferenceListener</a></td>
<th class="colLast" scope="row">
<div class="block">Listener for callbacks from a
<a href="org/custommonkey/xmlunit/DifferenceEngine.html#compare(org.w3c.dom.Node,org.w3c.dom.Node,org.custommonkey.xmlunit.DifferenceListener,org.custommonkey.xmlunit.ElementQualifier)"><code>DifferenceEngine comparison</code></a>.</div>
</th>
</tr>
<tr id="i43" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DoctypeInputStream.html" title="class in org.custommonkey.xmlunit">DoctypeInputStream</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts the marked-up content in a source InputStream to specify that it
conforms to a different DTD.</div>
</th>
</tr>
<tr id="i44" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/DoctypeReader.html" title="class in org.custommonkey.xmlunit">DoctypeReader</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts the marked-up content in a source Reader to specify that it
conforms to a different DTD.</div>
</th>
</tr>
<tr id="i45" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/util/DocumentBuilderFactoryConfigurer.html" title="class in org.xmlunit.util">DocumentBuilderFactoryConfigurer</a></td>
<th class="colLast" scope="row">
<div class="block">Configures DocumentBuilderFactories.</div>
</th>
</tr>
<tr id="i46" class="altColor">
<td class="colFirst"><a href="org/xmlunit/util/DocumentBuilderFactoryConfigurer.Builder.html" title="class in org.xmlunit.util">DocumentBuilderFactoryConfigurer.Builder</a></td>
<th class="colLast" scope="row">
<div class="block">Builder for a DocumentBuilderFactoryConfigurer.</div>
</th>
</tr>
<tr id="i47" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/DOMDifferenceEngine.html" title="class in org.xmlunit.diff">DOMDifferenceEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Difference engine based on DOM.</div>
</th>
</tr>
<tr id="i48" class="altColor">
<td class="colFirst"><a href="org/xmlunit/input/ElementContentWhitespaceStrippedSource.html" title="class in org.xmlunit.input">ElementContentWhitespaceStrippedSource</a></td>
<th class="colLast" scope="row">
<div class="block">A source that is obtained from a different source by removing all
text nodes that only contain whitespace.</div>
</th>
</tr>
<tr id="i49" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/ElementNameAndAttributeQualifier.html" title="class in org.custommonkey.xmlunit">ElementNameAndAttributeQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">More complex interface implementation that tests two elements for tag name
and attribute name comparability.</div>
</th>
</tr>
<tr id="i50" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/ElementNameAndTextQualifier.html" title="class in org.custommonkey.xmlunit">ElementNameAndTextQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">More complex interface implementation that tests two elements for tag name
and text content comparability.</div>
</th>
</tr>
<tr id="i51" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/ElementNameQualifier.html" title="class in org.custommonkey.xmlunit">ElementNameQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">Simple interface implementation that tests two elements for name
comparability.</div>
</th>
</tr>
<tr id="i52" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/ElementQualifier.html" title="interface in org.custommonkey.xmlunit">ElementQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">Interface used by the DifferenceEngine class to determine which elements can
be compared within a NodeList of child nodes.</div>
</th>
</tr>
<tr id="i53" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ElementSelector.html" title="interface in org.xmlunit.diff">ElementSelector</a></td>
<th class="colLast" scope="row">
<div class="block">Strategy used by <a href="org/xmlunit/diff/DefaultNodeMatcher.html" title="class in org.xmlunit.diff"><code>DefaultNodeMatcher</code></a> for selecting matching
elements.</div>
</th>
</tr>
<tr id="i54" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ElementSelectors.html" title="class in org.xmlunit.diff">ElementSelectors</a></td>
<th class="colLast" scope="row">
<div class="block">Common ElementSelector implementations.</div>
</th>
</tr>
<tr id="i55" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/ElementSelectors.ConditionalSelectorBuilder.html" title="interface in org.xmlunit.diff">ElementSelectors.ConditionalSelectorBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">Allows to build complex <a href="org/xmlunit/diff/ElementSelector.html" title="interface in org.xmlunit.diff"><code>ElementSelector</code></a>s by combining simpler blocks.</div>
</th>
</tr>
<tr id="i56" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/ElementSelectors.ConditionalSelectorBuilderThen.html" title="interface in org.xmlunit.diff">ElementSelectors.ConditionalSelectorBuilderThen</a></td>
<th class="colLast" scope="row">
<div class="block"><code>then</code>-part of conditional <a href="org/xmlunit/diff/ElementSelectors.html" title="class in org.xmlunit.diff"><code>ElementSelectors</code></a> built
via <a href="org/xmlunit/diff/ElementSelectors.ConditionalSelectorBuilder.html" title="interface in org.xmlunit.diff"><code>ElementSelectors.ConditionalSelectorBuilder</code></a>.</div>
</th>
</tr>
<tr id="i57" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ElementsShouldSatisfy.html" title="class in org.xmlunit.assertj.error">ElementsShouldSatisfy</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i58" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ElementsShouldSatisfy.html" title="class in org.xmlunit.assertj3.error">ElementsShouldSatisfy</a></td>
<th class="colLast" scope="row">
<div class="block">Copied subset of <code>ElementsShouldSatisfy</code> as AssertJ has moved the nested
UnsatisfiedRequirement class to a top level class, breaking backwards compatibility.</div>
</th>
</tr>
<tr id="i59" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ElementsShouldSatisfy.UnsatisfiedRequirement.html" title="class in org.xmlunit.assertj.error">ElementsShouldSatisfy.UnsatisfiedRequirement</a></td>
<th class="colLast" scope="row">
<div class="block">Holds the element not satisfing a requirement and the error message.</div>
</th>
</tr>
<tr id="i60" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ElementsShouldSatisfy.UnsatisfiedRequirement.html" title="class in org.xmlunit.assertj3.error">ElementsShouldSatisfy.UnsatisfiedRequirement</a></td>
<th class="colLast" scope="row">
<div class="block">Holds the element not satisfing a requirement and the error message.</div>
</th>
</tr>
<tr id="i61" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/matchers/EvaluateXPathMatcher.html" title="class in org.xmlunit.matchers">EvaluateXPathMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">This Hamcrest <code>Matcher</code> verifies whether the evaluation of the provided XPath expression
corresponds to the value matcher specified for the provided input XML object.</div>
</th>
</tr>
<tr id="i62" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/FloatingPointTolerantDifferenceListener.html" title="class in org.custommonkey.xmlunit.examples">FloatingPointTolerantDifferenceListener</a></td>
<th class="colLast" scope="row">
<div class="block">Expects texts to be floating point numbers and treats them as
identical if they only differ by a given tolerance value (or less).</div>
</th>
</tr>
<tr id="i63" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/matchers/HasXPathMatcher.html" title="class in org.xmlunit.matchers">HasXPathMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">This Hamcrest <code>Matcher</code> verifies whether the provided XPath expression corresponds to at least
one element in the provided object.</div>
</th>
</tr>
<tr id="i64" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/HTMLDocumentBuilder.html" title="class in org.custommonkey.xmlunit">HTMLDocumentBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">Build a DOM document from HTML content converting from 'plain' HTML into
'XHTML' along the way with the help of a TolerantSaxDocumentBuilder and
the Swing html parser classes.</div>
</th>
</tr>
<tr id="i65" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/IgnorePlaceholderHandler.html" title="class in org.xmlunit.placeholder">IgnorePlaceholderHandler</a></td>
<th class="colLast" scope="row">
<div class="block">Handler for the "ignore" placeholder keyword.</div>
</th>
</tr>
<tr id="i66" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/IgnoreTextAndAttributeValuesDifferenceListener.html" title="class in org.custommonkey.xmlunit">IgnoreTextAndAttributeValuesDifferenceListener</a></td>
<th class="colLast" scope="row">
<div class="block">Class to use when performing a Diff that only compares the
structure of 2 pieces of XML, i.e. where the values of text
and attribute nodes should be ignored.</div>
</th>
</tr>
<tr id="i67" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/Input.html" title="class in org.xmlunit.builder">Input</a></td>
<th class="colLast" scope="row">
<div class="block">Fluent API to create Source instances.</div>
</th>
</tr>
<tr id="i68" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/Input.Builder.html" title="interface in org.xmlunit.builder">Input.Builder</a></td>
<th class="colLast" scope="row">
<div class="block">Interface for fluent builders of <a href="https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/Source.html?is-external=true" title="class or interface in javax.xml.transform" class="externalLink"><code>Source</code></a>s.</div>
</th>
</tr>
<tr id="i69" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/Input.TransformationBuilder.html" title="interface in org.xmlunit.builder">Input.TransformationBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">Builds <a href="https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/Source.html?is-external=true" title="class or interface in javax.xml.transform" class="externalLink"><code>Source</code></a>s by transforming other sources.</div>
</th>
</tr>
<tr id="i70" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/util/IntegerBuffer.html" title="class in org.custommonkey.xmlunit.util">IntegerBuffer</a></td>
<th class="colLast" scope="row">
<div class="block">Simplistic dynamically growing buffer of integers used by DoctypeSupport.</div>
</th>
</tr>
<tr id="i71" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/IsDateTimePlaceholderHandler.html" title="class in org.xmlunit.placeholder">IsDateTimePlaceholderHandler</a></td>
<th class="colLast" scope="row">
<div class="block">Handler for the <code>isDateTime</code> placeholder keyword.</div>
</th>
</tr>
<tr id="i72" class="altColor">
<td class="colFirst"><a href="org/xmlunit/util/IsNullPredicate.html" title="class in org.xmlunit.util">IsNullPredicate</a></td>
<th class="colLast" scope="row">
<div class="block">A function that tests whether an object is null.</div>
</th>
</tr>
<tr id="i73" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/IsNumberPlaceholderHandler.html" title="class in org.xmlunit.placeholder">IsNumberPlaceholderHandler</a></td>
<th class="colLast" scope="row">
<div class="block">Handler for the <code>isNumber</code> placeholder keyword.</div>
</th>
</tr>
<tr id="i74" class="altColor">
<td class="colFirst"><a href="org/xmlunit/util/IterableNodeList.html" title="class in org.xmlunit.util">IterableNodeList</a></td>
<th class="colLast" scope="row">
<div class="block">Provides an iterable view to a NodeList, the Iterator that can be
obtained from this Iterable will be read-only.</div>
</th>
</tr>
<tr id="i75" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/jakarta_jaxb/JakartaJaxbBuilder.html" title="class in org.xmlunit.builder.jakarta_jaxb">JakartaJaxbBuilder</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/builder/JaxbBuilder.html" title="class in org.xmlunit.builder"><code>JaxbBuilder</code></a> for Jaxb-Object and creating a <code>JAXBSource</code>.</div>
</th>
</tr>
<tr id="i76" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/jakarta_jaxb/JakartaJaxbBuilderFactory.html" title="class in org.xmlunit.builder.jakarta_jaxb">JakartaJaxbBuilderFactory</a></td>
<th class="colLast" scope="row">
<div class="block">Implementation that uses <code>jakarta.xml.bind</code>.</div>
</th>
</tr>
<tr id="i77" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/javax_jaxb/JavaxJaxbBuilder.html" title="class in org.xmlunit.builder.javax_jaxb">JavaxJaxbBuilder</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/builder/JaxbBuilder.html" title="class in org.xmlunit.builder"><code>JaxbBuilder</code></a> for Jaxb-Object and creating a <a href="https://docs.oracle.com/javase/8/docs/api/javax/xml/bind/util/JAXBSource.html?is-external=true" title="class or interface in javax.xml.bind.util" class="externalLink"><code>JAXBSource</code></a>.</div>
</th>
</tr>
<tr id="i78" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/JaxbBuilder.html" title="class in org.xmlunit.builder">JaxbBuilder</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/builder/Input.Builder.html" title="interface in org.xmlunit.builder"><code>Input.Builder</code></a> for Jaxb-Object and creating a <code>JAXBSource</code>.</div>
</th>
</tr>
<tr id="i79" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/builder/JaxbBuilderFactory.html" title="interface in org.xmlunit.builder">JaxbBuilderFactory</a></td>
<th class="colLast" scope="row">
<div class="block">Interface that creates a JAXB Builder.</div>
</th>
</tr>
<tr id="i80" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/jaxp13/Jaxp13XpathEngine.html" title="class in org.custommonkey.xmlunit.jaxp13">Jaxp13XpathEngine</a></td>
<th class="colLast" scope="row">
<div class="block">XPath engine based on javax.xml.xpath.</div>
</th>
</tr>
<tr id="i81" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/JAXPConstants.html" title="class in org.custommonkey.xmlunit">JAXPConstants</a></td>
<th class="colLast" scope="row">
<div class="block">Utility constant class for JAXP-defined constants.</div>
</th>
</tr>
<tr id="i82" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/JAXPConstants.Properties.html" title="class in org.custommonkey.xmlunit">JAXPConstants.Properties</a></td>
<th class="colLast" scope="row">
<div class="block">Contains names for common properties.</div>
</th>
</tr>
<tr id="i83" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/validation/JAXPValidator.html" title="class in org.xmlunit.validation">JAXPValidator</a></td>
<th class="colLast" scope="row">
<div class="block">Validator using the javax.xml.validation namespace.</div>
</th>
</tr>
<tr id="i84" class="altColor">
<td class="colFirst"><a href="org/xmlunit/xpath/JAXPXPathEngine.html" title="class in org.xmlunit.xpath">JAXPXPathEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Simplified access to JAXP's XPath API.</div>
</th>
</tr>
<tr id="i85" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/validation/Languages.html" title="class in org.xmlunit.validation">Languages</a></td>
<th class="colLast" scope="row">
<div class="block">Constants for the languages supported by XMLUnit's schema
validation.</div>
</th>
</tr>
<tr id="i86" class="altColor">
<td class="colFirst"><a href="org/xmlunit/util/Linqy.html" title="class in org.xmlunit.util">Linqy</a></td>
<th class="colLast" scope="row">
<div class="block">A couple of (functional) sequence processing constructs.</div>
</th>
</tr>
<tr id="i87" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/util/Mapper.html" title="interface in org.xmlunit.util">Mapper</a><<a href="org/xmlunit/util/Mapper.html" title="type parameter in Mapper">F</a>,​<a href="org/xmlunit/util/Mapper.html" title="type parameter in Mapper">T</a>></td>
<th class="colLast" scope="row">
<div class="block">A function mapping from one type to another.</div>
</th>
</tr>
<tr id="i88" class="altColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/MatchesRegexPlaceholderHandler.html" title="class in org.xmlunit.placeholder">MatchesRegexPlaceholderHandler</a></td>
<th class="colLast" scope="row">
<div class="block">Handler for the <code>matchesRegex()</code> placeholder keyword.</div>
</th>
</tr>
<tr id="i89" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/MatchTracker.html" title="interface in org.custommonkey.xmlunit">MatchTracker</a></td>
<th class="colLast" scope="row">
<div class="block">Listener for callbacks from a <a href="org/custommonkey/xmlunit/DifferenceEngine.html#compare(org.w3c.dom.Node,org.w3c.dom.Node,org.custommonkey.xmlunit.DifferenceListener,org.custommonkey.xmlunit.ElementQualifier)"><code>DifferenceEngine comparison</code></a> that is notified on each and every
comparision that resulted in a match.</div>
</th>
</tr>
<tr id="i90" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/MultiLevelByNameAndTextSelector.html" title="class in org.xmlunit.diff">MultiLevelByNameAndTextSelector</a></td>
<th class="colLast" scope="row">
<div class="block"><a href="org/xmlunit/diff/ElementSelector.html" title="interface in org.xmlunit.diff"><code>ElementSelector</code></a> that allows two elements to be compared if
their name (including namespace URI, if any) and textual content is
the same at a certain level of nesting.</div>
</th>
</tr>
<tr id="i91" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/MultiLevelElementNameAndTextQualifier.html" title="class in org.custommonkey.xmlunit.examples">MultiLevelElementNameAndTextQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">Per popular request an interface implementation that uses element
names and the text node containes in the n'th child node to compare
elements.</div>
</th>
</tr>
<tr id="i92" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/MultipleNodeAssert.html" title="class in org.xmlunit.assertj">MultipleNodeAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Iterable</code></a> of <a href="https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom" class="externalLink"><code>Node</code></a>.</div>
</th>
</tr>
<tr id="i93" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/MultipleNodeAssert.html" title="class in org.xmlunit.assertj3">MultipleNodeAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Iterable</code></a> of <a href="https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom" class="externalLink"><code>Node</code></a>.</div>
</th>
</tr>
<tr id="i94" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NamespaceContext.html" title="interface in org.custommonkey.xmlunit">NamespaceContext</a></td>
<th class="colLast" scope="row">
<div class="block">Interface used by XpathEngine in order to map prefixes to namespace URIs.</div>
</th>
</tr>
<tr id="i95" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NewDifferenceEngine.html" title="class in org.custommonkey.xmlunit">NewDifferenceEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Class that has responsibility for comparing Nodes and notifying a
DifferenceListener of any differences or dissimilarities that are found.</div>
</th>
</tr>
<tr id="i96" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NewDifferenceEngine.ComparisonController2ComparisonController.html" title="class in org.custommonkey.xmlunit">NewDifferenceEngine.ComparisonController2ComparisonController</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts XMLUnit 1.x ComparisonController to XMLUnit 2.x ComparisonController.</div>
</th>
</tr>
<tr id="i97" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NewDifferenceEngine.DifferenceListener2DifferenceEvaluator.html" title="class in org.custommonkey.xmlunit">NewDifferenceEngine.DifferenceListener2DifferenceEvaluator</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts XMLUnit 1.x DifferenceListener to XMLUnit 2.x DifferenceEvaluator.</div>
</th>
</tr>
<tr id="i98" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NewDifferenceEngine.ElementQualifier2ElementSelector.html" title="class in org.custommonkey.xmlunit">NewDifferenceEngine.ElementQualifier2ElementSelector</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts XMLUnit 1.x ComparisonQualifider to XMLUnit 2.x ElementSelector.</div>
</th>
</tr>
<tr id="i99" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NewDifferenceEngine.MatchTracker2ComparisonListener.html" title="class in org.custommonkey.xmlunit">NewDifferenceEngine.MatchTracker2ComparisonListener</a></td>
<th class="colLast" scope="row">
<div class="block">Adapts XMLUnit 1.x MatchTracker to XMLUnit 2.x ComparisonListener.</div>
</th>
</tr>
<tr id="i100" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeDescriptor.html" title="class in org.custommonkey.xmlunit">NodeDescriptor</a></td>
<th class="colLast" scope="row">
<div class="block">Class for describing Nodes</div>
</th>
</tr>
<tr id="i101" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeDetail.html" title="class in org.custommonkey.xmlunit">NodeDetail</a></td>
<th class="colLast" scope="row">
<div class="block">Parameter class for holding information about a <code>Node</code> within
a Difference instance</div>
</th>
</tr>
<tr id="i102" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/NodeFilters.html" title="class in org.xmlunit.diff">NodeFilters</a></td>
<th class="colLast" scope="row">
<div class="block">Common NodeFilter implementations.</div>
</th>
</tr>
<tr id="i103" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeInputStream.html" title="class in org.custommonkey.xmlunit">NodeInputStream</a></td>
<th class="colLast" scope="row">
<div class="block">Adapter class to present the content of a DOM Node (e.g. a Document) as an
InputStream using a DOM to Stream transformation.</div>
</th>
</tr>
<tr id="i104" class="altColor">
<td class="colFirst"><a href="org/xmlunit/diff/NodeMatcher.html" title="interface in org.xmlunit.diff">NodeMatcher</a></td>
<th class="colLast" scope="row">
<div class="block">Strategy that matches control and tests nodes for comparison.</div>
</th>
</tr>
<tr id="i105" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/util/Nodes.html" title="class in org.xmlunit.util">Nodes</a></td>
<th class="colLast" scope="row">
<div class="block">Utility algorithms that work on DOM nodes.</div>
</th>
</tr>
<tr id="i106" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeTest.html" title="class in org.custommonkey.xmlunit">NodeTest</a></td>
<th class="colLast" scope="row">
<div class="block">Encapsulation of the Node-by-Node testing of a DOM Document
Uses a nodetype-specific <code>NodeFilter</code> to pass the DOM Nodes
to a NodeTester instance that performs the acual Node validation.</div>
</th>
</tr>
<tr id="i107" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeTester.html" title="interface in org.custommonkey.xmlunit">NodeTester</a></td>
<th class="colLast" scope="row">
<div class="block">Perform Node-by-Node validation of a DOM Document.</div>
</th>
</tr>
<tr id="i108" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/NodeTestException.html" title="class in org.custommonkey.xmlunit">NodeTestException</a></td>
<th class="colLast" scope="row">
<div class="block">Thrown by a NodeTest that fails.</div>
</th>
</tr>
<tr id="i109" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/input/NormalizedSource.html" title="class in org.xmlunit.input">NormalizedSource</a></td>
<th class="colLast" scope="row">
<div class="block">Performs XML normalization on a given Source, Document or Node.</div>
</th>
</tr>
<tr id="i110" class="altColor">
<td class="colFirst"><a href="org/xmlunit/validation/ParsingValidator.html" title="class in org.xmlunit.validation">ParsingValidator</a></td>
<th class="colLast" scope="row">
<div class="block">Validator implementation that uses "the old way" of validating an
XML input by parsing the input.</div>
</th>
</tr>
<tr id="i111" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/PlaceholderDifferenceEvaluator.html" title="class in org.xmlunit.placeholder">PlaceholderDifferenceEvaluator</a></td>
<th class="colLast" scope="row">
<div class="block">This class is used to add placeholder feature to XML comparison.</div>
</th>
</tr>
<tr id="i112" class="altColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/PlaceholderHandler.html" title="interface in org.xmlunit.placeholder">PlaceholderHandler</a></td>
<th class="colLast" scope="row">
<div class="block">Interface implemented by classes that are responsible for a
placeholder keyword.</div>
</th>
</tr>
<tr id="i113" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/placeholder/PlaceholderSupport.html" title="class in org.xmlunit.placeholder">PlaceholderSupport</a></td>
<th class="colLast" scope="row">
<div class="block">Adds support for the placeholder feature to a <a href="org/xmlunit/builder/DifferenceEngineConfigurer.html" title="interface in org.xmlunit.builder"><code>DifferenceEngineConfigurer</code></a> - like <a href="org/xmlunit/builder/DiffBuilder.html" title="class in org.xmlunit.builder"><code>DiffBuilder</code></a> or <code>
org.xmlunit.matchers.CompareMatcher</code>.</div>
</th>
</tr>
<tr id="i114" class="altColor">
<td class="colFirst"><a href="org/xmlunit/util/Predicate.html" title="interface in org.xmlunit.util">Predicate</a><<a href="org/xmlunit/util/Predicate.html" title="type parameter in Predicate">T</a>></td>
<th class="colLast" scope="row">
<div class="block">A function that tests an object for a property.</div>
</th>
</tr>
<tr id="i115" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/QualifiedName.html" title="class in org.custommonkey.xmlunit">QualifiedName</a></td>
<th class="colLast" scope="row">
<div class="block">Since javax.xml.namespace.QName is not present prior to Java5, this
is XMLUnit's own abstraction.</div>
</th>
</tr>
<tr id="i116" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/RecursiveElementNameAndTextQualifier.html" title="class in org.custommonkey.xmlunit.examples">RecursiveElementNameAndTextQualifier</a></td>
<th class="colLast" scope="row">
<div class="block">Compares all Element and Text nodes in two pieces of XML.</div>
</th>
</tr>
<tr id="i117" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/diff/RecursiveXPathBuilder.html" title="class in org.xmlunit.diff">RecursiveXPathBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">Finds the XPathContext of a Node by recursively building up the XPathContext.</div>
</th>
</tr>
<tr id="i118" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldAnyNodeHaveXPath.html" title="class in org.xmlunit.assertj.error">ShouldAnyNodeHaveXPath</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i119" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldAnyNodeHaveXPath.html" title="class in org.xmlunit.assertj3.error">ShouldAnyNodeHaveXPath</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i120" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldBeConvertible.html" title="class in org.xmlunit.assertj.error">ShouldBeConvertible</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i121" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldBeConvertible.html" title="class in org.xmlunit.assertj3.error">ShouldBeConvertible</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i122" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldBeInvalid.html" title="class in org.xmlunit.assertj.error">ShouldBeInvalid</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i123" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldBeInvalid.html" title="class in org.xmlunit.assertj3.error">ShouldBeInvalid</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i124" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldBeNotSimilar.html" title="class in org.xmlunit.assertj.error">ShouldBeNotSimilar</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i125" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldBeNotSimilar.html" title="class in org.xmlunit.assertj3.error">ShouldBeNotSimilar</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i126" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldBeSimilar.html" title="class in org.xmlunit.assertj.error">ShouldBeSimilar</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i127" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldBeValid.html" title="class in org.xmlunit.assertj.error">ShouldBeValid</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i128" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldBeValid.html" title="class in org.xmlunit.assertj3.error">ShouldBeValid</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i129" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldHaveAttribute.html" title="class in org.xmlunit.assertj.error">ShouldHaveAttribute</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i130" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldHaveAttribute.html" title="class in org.xmlunit.assertj3.error">ShouldHaveAttribute</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i131" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldHaveXPath.html" title="class in org.xmlunit.assertj.error">ShouldHaveXPath</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i132" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldHaveXPath.html" title="class in org.xmlunit.assertj3.error">ShouldHaveXPath</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i133" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldNotHaveAttribute.html" title="class in org.xmlunit.assertj.error">ShouldNotHaveAttribute</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i134" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldNotHaveAttribute.html" title="class in org.xmlunit.assertj3.error">ShouldNotHaveAttribute</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i135" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/error/ShouldNotHaveThrown.html" title="class in org.xmlunit.assertj.error">ShouldNotHaveThrown</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i136" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/error/ShouldNotHaveThrown.html" title="class in org.xmlunit.assertj3.error">ShouldNotHaveThrown</a></td>
<th class="colLast" scope="row"> </th>
</tr>
<tr id="i137" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/SimpleNamespaceContext.html" title="class in org.custommonkey.xmlunit">SimpleNamespaceContext</a></td>
<th class="colLast" scope="row">
<div class="block">Implementation of NamespaceContext that's backed by a map.</div>
</th>
</tr>
<tr id="i138" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/SimpleXpathEngine.html" title="class in org.custommonkey.xmlunit">SimpleXpathEngine</a></td>
<th class="colLast" scope="row">
<div class="block">Simple class for accessing the Nodes matched by an Xpath expression, or
evaluating the String value of an Xpath expression.</div>
</th>
</tr>
<tr id="i139" class="rowColor">
<td class="colFirst"><a href="org/xmlunit/assertj/SingleNodeAssert.html" title="class in org.xmlunit.assertj">SingleNodeAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for <a href="https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom" class="externalLink"><code>Node</code></a>.</div>
</th>
</tr>
<tr id="i140" class="altColor">
<td class="colFirst"><a href="org/xmlunit/assertj3/SingleNodeAssert.html" title="class in org.xmlunit.assertj3">SingleNodeAssert</a></td>
<th class="colLast" scope="row">
<div class="block">Assertion methods for <a href="https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/Node.html?is-external=true" title="class or interface in org.w3c.dom" class="externalLink"><code>Node</code></a>.</div>
</th>
</tr>
<tr id="i141" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/examples/TextDifferenceListenerBase.html" title="class in org.custommonkey.xmlunit.examples">TextDifferenceListenerBase</a></td>
<th class="colLast" scope="row">
<div class="block">Base class that delegates all differences to another DifferenceListener.</div>
</th>
</tr>
<tr id="i142" class="altColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/TolerantSaxDocumentBuilder.html" title="class in org.custommonkey.xmlunit">TolerantSaxDocumentBuilder</a></td>
<th class="colLast" scope="row">
<div class="block">Uses Sax events from the <code>ContentHandler</code> and
<code>LexicalHandler</code> interfaces to build a DOM document in a tolerant
fashion -- it can cope with start tags without end tags, and end tags without
start tags for example.</div>
</th>
</tr>
<tr id="i143" class="rowColor">
<td class="colFirst"><a href="org/custommonkey/xmlunit/Transform.html" title="class in org.custommonkey.xmlunit">Transform</a></td>
<th class="colLast" scope="row">
<div class="block">Handy wrapper for an XSLT transformation performed using JAXP/Trax.</div>
</th>
</tr>
<tr id="i144" class="altColor">
<td class="colFirst"><a href="org/xmlunit/builder/Transform.html" title="class in org.xmlunit.builder">Transform</a></td>
<th class="colLast" scope="row">
<div class="block">Fluent API access to <a href="org/xmlunit/transform/Transformation.html" title="class in org.xmlunit.transform"><code>Transformation</code></a>.</div>
</th>
</tr>
<tr id="i145" class="rowColor">