serialized-form.html
52.5 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_40) on Wed Sep 13 14:05:32 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Serialized Form (MTAS 6.6.1 API)</title>
<meta name="date" content="2017-09-13">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Serialized Form (MTAS 6.6.1 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.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>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></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>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Serialized Form" class="title">Serialized Form</h1>
</div>
<div class="serializedFormContainer">
<ul class="blockList">
<li class="blockList">
<h2 title="Package">Package mtas.analysis.util</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.analysis.util.MtasConfigException">
<!-- -->
</a>
<h3>Class <a href="mtas/analysis/util/MtasConfigException.html" title="class in mtas.analysis.util">mtas.analysis.util.MtasConfigException</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.analysis.util.MtasParserException">
<!-- -->
</a>
<h3>Class <a href="mtas/analysis/util/MtasParserException.html" title="class in mtas.analysis.util">mtas.analysis.util.MtasParserException</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package mtas.codec.util.collector</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataCollector">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataCollector.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataCollector</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>size</h4>
<pre>int size</pre>
<div class="block">The size.</div>
</li>
<li class="blockList">
<h4>position</h4>
<pre>int position</pre>
<div class="block">The position.</div>
</li>
<li class="blockList">
<h4>collectorType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> collectorType</pre>
<div class="block">The collector type.</div>
</li>
<li class="blockList">
<h4>statsType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> statsType</pre>
<div class="block">The stats type.</div>
</li>
<li class="blockList">
<h4>dataType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> dataType</pre>
<div class="block">The data type.</div>
</li>
<li class="blockList">
<h4>statsItems</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">E</a>> statsItems</pre>
<div class="block">The stats items.</div>
</li>
<li class="blockList">
<h4>sortType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortType</pre>
<div class="block">The sort type.</div>
</li>
<li class="blockList">
<h4>sortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortDirection</pre>
<div class="block">The sort direction.</div>
</li>
<li class="blockList">
<h4>start</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> start</pre>
<div class="block">The start.</div>
</li>
<li class="blockList">
<h4>number</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> number</pre>
<div class="block">The number.</div>
</li>
<li class="blockList">
<h4>errorNumber</h4>
<pre>int[] errorNumber</pre>
<div class="block">The error number.</div>
</li>
<li class="blockList">
<h4>errorList</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util">HashMap</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util">K</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html?is-external=true" title="class or interface in java.util">V</a>>[] errorList</pre>
<div class="block">The error list.</div>
</li>
<li class="blockList">
<h4>keyList</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] keyList</pre>
<div class="block">The key list.</div>
</li>
<li class="blockList">
<h4>sourceNumberList</h4>
<pre>int[] sourceNumberList</pre>
<div class="block">The source number list.</div>
</li>
<li class="blockList">
<h4>withTotal</h4>
<pre>boolean withTotal</pre>
<div class="block">The with total.</div>
</li>
<li class="blockList">
<h4>hasSub</h4>
<pre>boolean hasSub</pre>
<div class="block">The has sub.</div>
</li>
<li class="blockList">
<h4>subCollectorTypes</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subCollectorTypes</pre>
<div class="block">The sub collector types.</div>
</li>
<li class="blockList">
<h4>subDataTypes</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subDataTypes</pre>
<div class="block">The sub data types.</div>
</li>
<li class="blockList">
<h4>subStatsTypes</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subStatsTypes</pre>
<div class="block">The sub stats types.</div>
</li>
<li class="blockList">
<h4>subStatsItems</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">E</a>>[] subStatsItems</pre>
<div class="block">The sub stats items.</div>
</li>
<li class="blockList">
<h4>subSortTypes</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subSortTypes</pre>
<div class="block">The sub sort types.</div>
</li>
<li class="blockList">
<h4>subSortDirections</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subSortDirections</pre>
<div class="block">The sub sort directions.</div>
</li>
<li class="blockList">
<h4>subStart</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>[] subStart</pre>
<div class="block">The sub start.</div>
</li>
<li class="blockList">
<h4>subNumber</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>[] subNumber</pre>
<div class="block">The sub number.</div>
</li>
<li class="blockList">
<h4>subCollectorListNextLevel</h4>
<pre><a href="mtas/codec/util/collector/MtasDataCollector.html" title="class in mtas.codec.util.collector">MtasDataCollector</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a>>,<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a>>>[] subCollectorListNextLevel</pre>
<div class="block">The sub collector list next level.</div>
</li>
<li class="blockListLast">
<h4>subCollectorNextLevel</h4>
<pre><a href="mtas/codec/util/collector/MtasDataCollector.html" title="class in mtas.codec.util.collector">MtasDataCollector</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a>>,<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a>>> subCollectorNextLevel</pre>
<div class="block">The sub collector next level.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataCollectorResult">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataCollectorResult.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataCollectorResult</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>list</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">SortedMap</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">K</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">V</a>> list</pre>
<div class="block">The list.</div>
</li>
<li class="blockList">
<h4>item</h4>
<pre><a href="mtas/codec/util/collector/MtasDataItem.html" title="class in mtas.codec.util.collector">MtasDataItem</a><<a href="mtas/codec/util/collector/MtasDataItem.html" title="type parameter in MtasDataItem">T1</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataItem.html" title="type parameter in MtasDataItem">T1</a>>,<a href="mtas/codec/util/collector/MtasDataItem.html" title="type parameter in MtasDataItem">T2</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataItem.html" title="type parameter in MtasDataItem">T2</a>>> item</pre>
<div class="block">The item.</div>
</li>
<li class="blockList">
<h4>sortType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortType</pre>
<div class="block">The sort type.</div>
</li>
<li class="blockList">
<h4>sortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortDirection</pre>
<div class="block">The sort direction.</div>
</li>
<li class="blockList">
<h4>collectorType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> collectorType</pre>
<div class="block">The collector type.</div>
</li>
<li class="blockList">
<h4>lastSortValue</h4>
<pre><a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="class in mtas.codec.util.collector">MtasDataItemNumberComparator</a><<a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="type parameter in MtasDataItemNumberComparator">T</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="type parameter in MtasDataItemNumberComparator">T</a>>> lastSortValue</pre>
<div class="block">The last sort value.</div>
</li>
<li class="blockList">
<h4>startKey</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> startKey</pre>
<div class="block">The start key.</div>
</li>
<li class="blockListLast">
<h4>endKey</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> endKey</pre>
<div class="block">The end key.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataDoubleAdvanced">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataDoubleAdvanced.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataDoubleAdvanced</a> extends <a href="mtas/codec/util/collector/MtasDataAdvanced.html" title="class in mtas.codec.util.collector">MtasDataAdvanced</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataDoubleBasic">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataDoubleBasic.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataDoubleBasic</a> extends <a href="mtas/codec/util/collector/MtasDataBasic.html" title="class in mtas.codec.util.collector">MtasDataBasic</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataDoubleFull">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataDoubleFull.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataDoubleFull</a> extends <a href="mtas/codec/util/collector/MtasDataFull.html" title="class in mtas.codec.util.collector">MtasDataFull</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataItem">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataItem.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataItem</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>sub</h4>
<pre><a href="mtas/codec/util/collector/MtasDataCollector.html" title="class in mtas.codec.util.collector">MtasDataCollector</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a>>,<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a>>> sub</pre>
<div class="block">The sub.</div>
</li>
<li class="blockList">
<h4>statsItems</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">E</a>> statsItems</pre>
<div class="block">The stats items.</div>
</li>
<li class="blockList">
<h4>sortType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortType</pre>
<div class="block">The sort type.</div>
</li>
<li class="blockList">
<h4>sortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortDirection</pre>
<div class="block">The sort direction.</div>
</li>
<li class="blockList">
<h4>errorNumber</h4>
<pre>int errorNumber</pre>
<div class="block">The error number.</div>
</li>
<li class="blockList">
<h4>errorList</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">K</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">V</a>> errorList</pre>
<div class="block">The error list.</div>
</li>
<li class="blockList">
<h4>comparableSortValue</h4>
<pre><a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="class in mtas.codec.util.collector">MtasDataItemNumberComparator</a><<a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="type parameter in MtasDataItemNumberComparator">T</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="type parameter in MtasDataItemNumberComparator">T</a>>> comparableSortValue</pre>
<div class="block">The comparable sort value.</div>
</li>
<li class="blockList">
<h4>recomputeComparableSortValue</h4>
<pre>boolean recomputeComparableSortValue</pre>
<div class="block">The recompute comparable sort value.</div>
</li>
<li class="blockListLast">
<h4>sourceNumber</h4>
<pre>int sourceNumber</pre>
<div class="block">The source number.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataItemDoubleAdvanced">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataItemDoubleAdvanced.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataItemDoubleAdvanced</a> extends <a href="mtas/codec/util/collector/MtasDataItemAdvanced.html" title="class in mtas.codec.util.collector">MtasDataItemAdvanced</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataItemDoubleBasic">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataItemDoubleBasic.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataItemDoubleBasic</a> extends <a href="mtas/codec/util/collector/MtasDataItemBasic.html" title="class in mtas.codec.util.collector">MtasDataItemBasic</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataItemDoubleFull">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataItemDoubleFull.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataItemDoubleFull</a> extends <a href="mtas/codec/util/collector/MtasDataItemFull.html" title="class in mtas.codec.util.collector">MtasDataItemFull</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataItemNumberComparator">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataItemNumberComparator.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataItemNumberComparator</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>value</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> value</pre>
<div class="block">The value.</div>
</li>
<li class="blockListLast">
<h4>sortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortDirection</pre>
<div class="block">The sort direction.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataLongAdvanced">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataLongAdvanced.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataLongAdvanced</a> extends <a href="mtas/codec/util/collector/MtasDataAdvanced.html" title="class in mtas.codec.util.collector">MtasDataAdvanced</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataLongBasic">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataLongBasic.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataLongBasic</a> extends <a href="mtas/codec/util/collector/MtasDataBasic.html" title="class in mtas.codec.util.collector">MtasDataBasic</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
<li class="blockList"><a name="mtas.codec.util.collector.MtasDataLongFull">
<!-- -->
</a>
<h3>Class <a href="mtas/codec/util/collector/MtasDataLongFull.html" title="class in mtas.codec.util.collector">mtas.codec.util.collector.MtasDataLongFull</a> extends <a href="mtas/codec/util/collector/MtasDataFull.html" title="class in mtas.codec.util.collector">MtasDataFull</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package mtas.parser.cql</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.parser.cql.ParseException">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/cql/ParseException.html" title="class in mtas.parser.cql">mtas.parser.cql.ParseException</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>currentToken</h4>
<pre><a href="mtas/parser/cql/Token.html" title="class in mtas.parser.cql">Token</a> currentToken</pre>
<div class="block">This is the last token that has been consumed successfully. If
this object has been created due to a parse error, the token
followng this token will (therefore) be the first error token.</div>
</li>
<li class="blockList">
<h4>expectedTokenSequences</h4>
<pre>int[][] expectedTokenSequences</pre>
<div class="block">Each entry in this array is an array of integers. Each array
of integers represents a sequence of tokens (by their ordinal
values) that is expected at this point of the parse.</div>
</li>
<li class="blockListLast">
<h4>tokenImage</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] tokenImage</pre>
<div class="block">This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred. This array is
defined in the generated ...Constants interface.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.parser.cql.Token">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/cql/Token.html" title="class in mtas.parser.cql">mtas.parser.cql.Token</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>kind</h4>
<pre>int kind</pre>
<div class="block">An integer that describes the kind of this token. This numbering
system is determined by JavaCCParser, and a table of these numbers is
stored in the file ...Constants.java.</div>
</li>
<li class="blockList">
<h4>beginLine</h4>
<pre>int beginLine</pre>
<div class="block">The line number of the first character of this Token.</div>
</li>
<li class="blockList">
<h4>beginColumn</h4>
<pre>int beginColumn</pre>
<div class="block">The column number of the first character of this Token.</div>
</li>
<li class="blockList">
<h4>endLine</h4>
<pre>int endLine</pre>
<div class="block">The line number of the last character of this Token.</div>
</li>
<li class="blockList">
<h4>endColumn</h4>
<pre>int endColumn</pre>
<div class="block">The column number of the last character of this Token.</div>
</li>
<li class="blockList">
<h4>image</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> image</pre>
<div class="block">The string image of the token.</div>
</li>
<li class="blockList">
<h4>next</h4>
<pre><a href="mtas/parser/cql/Token.html" title="class in mtas.parser.cql">Token</a> next</pre>
<div class="block">A reference to the next regular (non-special) token from the input
stream. If this is the last token from the input stream, or if the
token manager has not read tokens beyond this one, this field is
set to null. This is true only if this token is also a regular
token. Otherwise, see below for a description of the contents of
this field.</div>
</li>
<li class="blockListLast">
<h4>specialToken</h4>
<pre><a href="mtas/parser/cql/Token.html" title="class in mtas.parser.cql">Token</a> specialToken</pre>
<div class="block">This field is used to access special tokens that occur prior to this
token, but after the immediately preceding regular (non-special) token.
If there are no such special tokens, this field is set to null.
When there are more than one such special token, this field refers
to the last of these special tokens, which in turn refers to the next
previous special token through its specialToken field, and so on
until the first special token (whose specialToken field is null).
The next fields of special tokens refer to other special tokens that
immediately follow it (without an intervening regular token). If there
is no such token, this field is null.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.parser.cql.TokenMgrError">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/cql/TokenMgrError.html" title="class in mtas.parser.cql">mtas.parser.cql.TokenMgrError</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Error.html?is-external=true" title="class or interface in java.lang">Error</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>errorCode</h4>
<pre>int errorCode</pre>
<div class="block">Indicates the reason why the exception is thrown. It will have
one of the above 4 values.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package mtas.parser.function</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.parser.function.ParseException">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/function/ParseException.html" title="class in mtas.parser.function">mtas.parser.function.ParseException</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>currentToken</h4>
<pre><a href="mtas/parser/function/Token.html" title="class in mtas.parser.function">Token</a> currentToken</pre>
<div class="block">This is the last token that has been consumed successfully. If
this object has been created due to a parse error, the token
followng this token will (therefore) be the first error token.</div>
</li>
<li class="blockList">
<h4>expectedTokenSequences</h4>
<pre>int[][] expectedTokenSequences</pre>
<div class="block">Each entry in this array is an array of integers. Each array
of integers represents a sequence of tokens (by their ordinal
values) that is expected at this point of the parse.</div>
</li>
<li class="blockListLast">
<h4>tokenImage</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] tokenImage</pre>
<div class="block">This is a reference to the "tokenImage" array of the generated
parser within which the parse error occurred. This array is
defined in the generated ...Constants interface.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.parser.function.Token">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/function/Token.html" title="class in mtas.parser.function">mtas.parser.function.Token</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>kind</h4>
<pre>int kind</pre>
<div class="block">An integer that describes the kind of this token. This numbering
system is determined by JavaCCParser, and a table of these numbers is
stored in the file ...Constants.java.</div>
</li>
<li class="blockList">
<h4>beginLine</h4>
<pre>int beginLine</pre>
<div class="block">The line number of the first character of this Token.</div>
</li>
<li class="blockList">
<h4>beginColumn</h4>
<pre>int beginColumn</pre>
<div class="block">The column number of the first character of this Token.</div>
</li>
<li class="blockList">
<h4>endLine</h4>
<pre>int endLine</pre>
<div class="block">The line number of the last character of this Token.</div>
</li>
<li class="blockList">
<h4>endColumn</h4>
<pre>int endColumn</pre>
<div class="block">The column number of the last character of this Token.</div>
</li>
<li class="blockList">
<h4>image</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> image</pre>
<div class="block">The string image of the token.</div>
</li>
<li class="blockList">
<h4>next</h4>
<pre><a href="mtas/parser/function/Token.html" title="class in mtas.parser.function">Token</a> next</pre>
<div class="block">A reference to the next regular (non-special) token from the input
stream. If this is the last token from the input stream, or if the
token manager has not read tokens beyond this one, this field is
set to null. This is true only if this token is also a regular
token. Otherwise, see below for a description of the contents of
this field.</div>
</li>
<li class="blockListLast">
<h4>specialToken</h4>
<pre><a href="mtas/parser/function/Token.html" title="class in mtas.parser.function">Token</a> specialToken</pre>
<div class="block">This field is used to access special tokens that occur prior to this
token, but after the immediately preceding regular (non-special) token.
If there are no such special tokens, this field is set to null.
When there are more than one such special token, this field refers
to the last of these special tokens, which in turn refers to the next
previous special token through its specialToken field, and so on
until the first special token (whose specialToken field is null).
The next fields of special tokens refer to other special tokens that
immediately follow it (without an intervening regular token). If there
is no such token, this field is null.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.parser.function.TokenMgrError">
<!-- -->
</a>
<h3>Class <a href="mtas/parser/function/TokenMgrError.html" title="class in mtas.parser.function">mtas.parser.function.TokenMgrError</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Error.html?is-external=true" title="class or interface in java.lang">Error</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>errorCode</h4>
<pre>int errorCode</pre>
<div class="block">Indicates the reason why the exception is thrown. It will have
one of the above 4 values.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package mtas.solr.handler.component.util</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.solr.handler.component.util.MtasSolrCollectionResult">
<!-- -->
</a>
<h3>Class <a href="mtas/solr/handler/component/util/MtasSolrCollectionResult.html" title="class in mtas.solr.handler.component.util">mtas.solr.handler.component.util.MtasSolrCollectionResult</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>values</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/HashSet.html?is-external=true" title="class or interface in java.util">HashSet</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/HashSet.html?is-external=true" title="class or interface in java.util">E</a>> values</pre>
<div class="block">The values.</div>
</li>
<li class="blockList">
<h4>id</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> id</pre>
<div class="block">The id.</div>
</li>
<li class="blockList">
<h4>action</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> action</pre>
<div class="block">The action.</div>
</li>
<li class="blockList">
<h4>now</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true" title="class or interface in java.lang">Long</a> now</pre>
<div class="block">The now.</div>
</li>
<li class="blockList">
<h4>list</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">E</a>> list</pre>
<div class="block">The list.</div>
</li>
<li class="blockListLast">
<h4>status</h4>
<pre>org.apache.solr.common.util.SimpleOrderedMap<T> status</pre>
<div class="block">The status.</div>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="mtas.solr.handler.component.util.MtasSolrMtasResult">
<!-- -->
</a>
<h3>Class <a href="mtas/solr/handler/component/util/MtasSolrMtasResult.html" title="class in mtas.solr.handler.component.util">mtas.solr.handler.component.util.MtasSolrMtasResult</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>dataType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> dataType</pre>
<div class="block">The data type.</div>
</li>
<li class="blockList">
<h4>statsType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> statsType</pre>
<div class="block">The stats type.</div>
</li>
<li class="blockList">
<h4>statsItems</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">E</a>> statsItems</pre>
<div class="block">The stats items.</div>
</li>
<li class="blockList">
<h4>sortType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortType</pre>
<div class="block">The sort type.</div>
</li>
<li class="blockList">
<h4>sortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> sortDirection</pre>
<div class="block">The sort direction.</div>
</li>
<li class="blockList">
<h4>start</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> start</pre>
<div class="block">The start.</div>
</li>
<li class="blockList">
<h4>number</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> number</pre>
<div class="block">The number.</div>
</li>
<li class="blockList">
<h4>dataCollector</h4>
<pre><a href="mtas/codec/util/collector/MtasDataCollector.html" title="class in mtas.codec.util.collector">MtasDataCollector</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T1</a>>,<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang">Number</a> & <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="mtas/codec/util/collector/MtasDataCollector.html" title="type parameter in MtasDataCollector">T2</a>>> dataCollector</pre>
<div class="block">The data collector.</div>
</li>
<li class="blockList">
<h4>functionData</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">K</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">V</a>> functionData</pre>
<div class="block">The function data.</div>
</li>
<li class="blockList">
<h4>subDataType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subDataType</pre>
<div class="block">The sub data type.</div>
</li>
<li class="blockList">
<h4>subStatsType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subStatsType</pre>
<div class="block">The sub stats type.</div>
</li>
<li class="blockList">
<h4>subStatsItems</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</a><<a href="http://docs.oracle.com/javase/8/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">E</a>>[] subStatsItems</pre>
<div class="block">The sub stats items.</div>
</li>
<li class="blockList">
<h4>subSortType</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subSortType</pre>
<div class="block">The sub sort type.</div>
</li>
<li class="blockList">
<h4>subSortDirection</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] subSortDirection</pre>
<div class="block">The sub sort direction.</div>
</li>
<li class="blockList">
<h4>subStart</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>[] subStart</pre>
<div class="block">The sub start.</div>
</li>
<li class="blockListLast">
<h4>subNumber</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a>[] subNumber</pre>
<div class="block">The sub number.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package mtas.solr.update.processor</h2>
<ul class="blockList">
<li class="blockList"><a name="mtas.solr.update.processor.MtasUpdateRequestProcessorResultItem">
<!-- -->
</a>
<h3>Class <a href="mtas/solr/update/processor/MtasUpdateRequestProcessorResultItem.html" title="class in mtas.solr.update.processor">mtas.solr.update.processor.MtasUpdateRequestProcessorResultItem</a> extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>tokenTerm</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> tokenTerm</pre>
<div class="block">The token term.</div>
</li>
<li class="blockList">
<h4>tokenOffsetStart</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> tokenOffsetStart</pre>
<div class="block">The token offset start.</div>
</li>
<li class="blockList">
<h4>tokenOffsetEnd</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> tokenOffsetEnd</pre>
<div class="block">The token offset end.</div>
</li>
<li class="blockList">
<h4>tokenPosIncr</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> tokenPosIncr</pre>
<div class="block">The token pos incr.</div>
</li>
<li class="blockList">
<h4>tokenPayload</h4>
<pre>byte[] tokenPayload</pre>
<div class="block">The token payload.</div>
</li>
<li class="blockListLast">
<h4>tokenFlags</h4>
<pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</a> tokenFlags</pre>
<div class="block">The token flags.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.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>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017 <a href="http://www.meertens.knaw.nl/">Meertens Institute</a>. All rights reserved.</small></p>
</body>
</html>