-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathallclasses-index.html
1018 lines (1017 loc) · 105 KB
/
allclasses-index.html
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>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Thu Jan 05 16:12:37 EST 2023 -->
<title>All Classes and Interfaces</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<meta name="dc.created" content="2023-01-05">
<meta name="description" content="class index">
<meta name="generator" content="javadoc/AllClassesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="script-dir/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="script-dir/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="script-dir/jquery-ui.min.js"></script>
</head>
<body class="all-classes-index-page">
<script type="text/javascript">var evenRowColor = "even-row-color";
var oddRowColor = "odd-row-color";
var tableTab = "table-tab";
var activeTableTab = "active-table-tab";
var pathtoroot = "./";
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="flex-box">
<header role="banner" class="flex-header">
<nav role="navigation">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="top-nav" id="navbar-top">
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
<li><a href="index.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html#all-classes">Help</a></li>
</ul>
</div>
<div class="sub-nav">
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
<input type="text" id="search-input" value="search" disabled="disabled">
<input type="reset" id="reset-button" value="reset" disabled="disabled">
</div>
</div>
<!-- ========= END OF TOP NAVBAR ========= -->
<span class="skip-nav" id="skip-navbar-top"></span></nav>
</header>
<div class="flex-content">
<main role="main">
<div class="header">
<h1 title="All Classes and Interfaces" class="title">All Classes and Interfaces</h1>
</div>
<div id="all-classes-table">
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="all-classes-table-tab0" role="tab" aria-selected="true" aria-controls="all-classes-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table', 2)" class="active-table-tab">All Classes and Interfaces</button><button id="all-classes-table-tab1" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab1', 2)" class="table-tab">Interfaces</button><button id="all-classes-table-tab2" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab2', 2)" class="table-tab">Classes</button><button id="all-classes-table-tab3" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab3', 2)" class="table-tab">Enum Classes</button><button id="all-classes-table-tab5" role="tab" aria-selected="false" aria-controls="all-classes-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('all-classes-table', 'all-classes-table-tab5', 2)" class="table-tab">Exceptions</button></div>
<div id="all-classes-table.tabpanel" role="tabpanel">
<div class="summary-table two-column-summary" aria-labelledby="all-classes-table-tab0">
<div class="table-header col-first">Class</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/service/impl/AbortQueryException.html" title="class in com.tyndalehouse.step.core.service.impl">AbortQueryException</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
<div class="block">Indicates that a query should be aborted and no results returned...</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/AbstractAncientSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">AbstractAncientSuggestionServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/loaders/AbstractClasspathBasedModuleLoader.html" title="class in com.tyndalehouse.step.core.data.loaders">AbstractClasspathBasedModuleLoader</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Loads modules straight from a CSV file to a database form</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/AbstractComplexSearch.html" title="class in com.tyndalehouse.step.core.models">AbstractComplexSearch</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Parent class sharing to share some common properties between lookups for passages and searches</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/AbstractIgnoreMergedListSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">AbstractIgnoreMergedListSuggestionServiceImpl</a><<a href="com/tyndalehouse/step/core/service/impl/suggestion/AbstractIgnoreMergedListSuggestionServiceImpl.html" title="type parameter in AbstractIgnoreMergedListSuggestionServiceImpl">T</a> extends <a href="com/tyndalehouse/step/core/models/search/PopularSuggestion.html" title="interface in com.tyndalehouse.step.core.models.search">PopularSuggestion</a>></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A abstract implementation that assumes the first list (exact matches) have been merged
already, so we will only ever return the second list.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/AbstractStepGuiceModule.html" title="class in com.tyndalehouse.step.core.utils">AbstractStepGuiceModule</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A colletion of utilities to read property files</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/AbstractSubjectSearchServiceImpl.html" title="class in com.tyndalehouse.step.core.service.search.impl">AbstractSubjectSearchServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">An abstract class that helps build queries for the nave lucene index.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/AllResultsCollector.html" title="class in com.tyndalehouse.step.core.data">AllResultsCollector</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Simply accepts all results into a list</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/AlternativeTranslationsProcessor.html" title="class in com.tyndalehouse.step.core.data.processors">AlternativeTranslationsProcessor</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Takes the reference provided and turns into an Osis version</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/AlternativeTranslationsServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">AlternativeTranslationsServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Gives access to the underlying index</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/AlternativeVersionsService.html" title="interface in com.tyndalehouse.step.core.service">AlternativeVersionsService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Allows access to the alternative translation data</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/AnalysisService.html" title="interface in com.tyndalehouse.step.core.service">AnalysisService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Defines an interface for obtaining various stats on a passage.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/AnalysisServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">AnalysisServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A service able to retrieve various kinds of statistics, delegates to <a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordAnalysisServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl"><code>JSwordAnalysisServiceImpl</code></a> for
some operations.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/AnalyzedPrefixSearchQueryParser.html" title="class in com.tyndalehouse.step.core.data">AnalyzedPrefixSearchQueryParser</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/AncientLanguageAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">AncientLanguageAnalyzer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Analyzer to remove the accents and other marks that make it difficult for a user to search</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/AncientLanguageSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">AncientLanguageSuggestionServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/AncientMeaningSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">AncientMeaningSuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Sets up the popular and gloss sorts</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/AppManagerImpl.html" title="class in com.tyndalehouse.step.core.service.impl">AppManagerImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Allows querying of app-specific properties, such as the installation properties</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/AppManagerService.html" title="interface in com.tyndalehouse.step.core.service">AppManagerService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/AugmentedStrongProcessor.html" title="class in com.tyndalehouse.step.core.data.processors">AugmentedStrongProcessor</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Adds generated fields to the entity document - affects both "definition" and "specificForm"</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/AutoSuggestion.html" title="class in com.tyndalehouse.step.core.models.search">AutoSuggestion</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/AvailableFeatures.html" title="class in com.tyndalehouse.step.core.models">AvailableFeatures</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Features that are available to a particular version/displayMode with explanations of why others aren't</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/BetaAccentedAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">BetaAccentedAnalyzer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">An analyzer for transliterations</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/filters/BetaTransliterationCleaningFilter.html" title="class in com.tyndalehouse.step.core.data.filters">BetaTransliterationCleaningFilter</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Cleans up transliterations by removing any extra character</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/BibleInformationService.html" title="interface in com.tyndalehouse.step.core.service">BibleInformationService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Interface to the service that gives information about the books of the bible, the different types of bible,
etc.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/BibleInformationServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">BibleInformationServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Command handler returning all available bible versions.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/BibleInstaller.html" title="class in com.tyndalehouse.step.core.models">BibleInstaller</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/BibleVersion.html" title="class in com.tyndalehouse.step.core.models">BibleVersion</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Contains information about a bible version to be displayed on the screen in the UI</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/BookAndBibleCount.html" title="class in com.tyndalehouse.step.core.models.search">BookAndBibleCount</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class OTAndBibleCount.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/BookName.html" title="class in com.tyndalehouse.step.core.models">BookName</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Gives info on a book name (short and long names)</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/BookName.Section.html" title="enum class in com.tyndalehouse.step.core.models">BookName.Section</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/models/ClientSession.html" title="interface in com.tyndalehouse.step.core.models">ClientSession</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">At the moment, the "Client Session" object just wraps around an id.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/ColorCoderProviderImpl.html" title="class in com.tyndalehouse.step.core.xsl.impl">ColorCoderProviderImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A utility to provide colors to an xsl spreadsheet.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/ColorCoderProviderImplTest.html" title="class in com.tyndalehouse.step.core.xsl.impl">ColorCoderProviderImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">The color coder tests</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/stats/CombinedPassageStats.html" title="class in com.tyndalehouse.step.core.models.stats">CombinedPassageStats</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Combined passage stats has stats based on word occurrences, subjects as well as strong numbers.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/CommaDelimitedAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">CommaDelimitedAnalyzer</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Just uses whitespaces to separate tokens</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/tokenizers/CommaDelimitedTokenizer.html" title="class in com.tyndalehouse.step.core.data.tokenizers">CommaDelimitedTokenizer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/utils/language/hebrew/ConsonantType.html" title="enum class in com.tyndalehouse.step.core.utils.language.hebrew">ConsonantType</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3">
<div class="block">Hebrew consonant types</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/ContemporaryLanguageUtils.html" title="class in com.tyndalehouse.step.core.utils.language">ContemporaryLanguageUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Utilities for doing Hebrew transliteration</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/ConversionUtils.html" title="class in com.tyndalehouse.step.core.utils">ConversionUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Utilities to convert from one form to another</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/CrossReferenceProviderImpl.html" title="class in com.tyndalehouse.step.core.xsl.impl">CrossReferenceProviderImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides extra cross-references to be displayed next to the passage</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/guice/providers/DefaultInstallersProvider.html" title="class in com.tyndalehouse.step.core.guice.providers">DefaultInstallersProvider</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides a set of installers for installing Bibles, modules, etc e.g.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/guice/providers/DefaultInstallersProviderTest.html" title="class in com.tyndalehouse.step.core.guice.providers">DefaultInstallersProviderTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Test properties are loaded properly and construct a installer capable of downloading books off the internet</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/guice/providers/DefaultVersionsProvider.html" title="class in com.tyndalehouse.step.core.guice.providers">DefaultVersionsProvider</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides a list of default versions that should be installed for the application</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/Definition.html" title="class in com.tyndalehouse.step.core.models">Definition</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Represents a definition, has a key and a value</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/DefinitionAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">DefinitionAnalyzer</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Class to analyze various definition fields</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/DirectoryInstaller.html" title="class in com.tyndalehouse.step.core.data">DirectoryInstaller</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Installs packages from a directory</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/DirectoryInstallerTest.html" title="class in com.tyndalehouse.step.core.data">DirectoryInstallerTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Test installations from a directory</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/DirectoryListingInstaller.html" title="class in com.tyndalehouse.step.core.data">DirectoryListingInstaller</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Bases the list of books based on the directory listing of a particular folder, as opposed to a zip file of some kind.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/prebuild/DownloadJSwordBiblesPreReq.html" title="class in com.tyndalehouse.step.core.prebuild">DownloadJSwordBiblesPreReq</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Downloads the jsword bible versions</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/DualKey.html" title="class in com.tyndalehouse.step.core.xsl.impl">DualKey</a><<a href="com/tyndalehouse/step/core/xsl/impl/DualKey.html" title="type parameter in DualKey">T</a>,<wbr><a href="com/tyndalehouse/step/core/xsl/impl/DualKey.html" title="type parameter in DualKey">S</a>></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A Strong Morph Map takes two keys, and gives one word back.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/EnhancedTimelineEvent.html" title="class in com.tyndalehouse.step.core.models">EnhancedTimelineEvent</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Adds some key non-persisted fields to the event</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/EnrichedLookupOption.html" title="class in com.tyndalehouse.step.core.models">EnrichedLookupOption</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Outlines a list of options available in lookup</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/EntityConfiguration.html" title="class in com.tyndalehouse.step.core.data">EntityConfiguration</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A configuration of the entity, include the list of fields, etc.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/EntityDoc.html" title="class in com.tyndalehouse.step.core.data">EntityDoc</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/data/EntityIndexReader.html" title="interface in com.tyndalehouse.step.core.data">EntityIndexReader</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Interface to read an index</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/EntityIndexReaderImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">EntityIndexReaderImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Reads an entity</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/EntityIndexWriterImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">EntityIndexWriterImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Reads a file and creates the equivalent Lucene index for it.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/data/EntityManager.html" title="interface in com.tyndalehouse.step.core.data">EntityManager</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Interface for entity managers</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/EntityManagerImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">EntityManagerImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/ExactForm.html" title="class in com.tyndalehouse.step.core.models">ExactForm</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Contains information about a bible version to be displayed on the screen in the UI</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/ExpandableSubjectHeadingEntry.html" title="class in com.tyndalehouse.step.core.models.search">ExpandableSubjectHeadingEntry</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">An expandable header</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/FieldBasedMeaningSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">FieldBasedMeaningSuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/FieldConfig.html" title="class in com.tyndalehouse.step.core.data">FieldConfig</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Records how a field is stored in Lucene</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/data/common/GeoPrecision.html" title="enum class in com.tyndalehouse.step.core.data.common">GeoPrecision</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">indicates how accurate a location is</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/GlossComparator.html" title="class in com.tyndalehouse.step.core.service.helpers">GlossComparator</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Compares a definition by gloss</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/GreekAncientLanguageServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">GreekAncientLanguageServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/GreekAncientMeaningServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">GreekAncientMeaningServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides terms for Greek unicode or transliterations</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/GreekUtils.html" title="class in com.tyndalehouse.step.core.utils.language">GreekUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Utilities for doing Hebrew transliteration</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/GreekUtilsTest.html" title="class in com.tyndalehouse.step.core.utils.language">GreekUtilsTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Greek utils tests</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/models/HasCsvValueName.html" title="interface in com.tyndalehouse.step.core.models">HasCsvValueName</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Provides an (English) display name</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/HeadingsUtil.html" title="class in com.tyndalehouse.step.core.utils">HeadingsUtil</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Lengthens the name of a header</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/create/HeadwordLineBasedLoader.html" title="class in com.tyndalehouse.step.core.data.create">HeadwordLineBasedLoader</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Loads an Easton Dictionary</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/HebrewAncientLanguageServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">HebrewAncientLanguageServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/HebrewAncientMeaningServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">HebrewAncientMeaningServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides terms for Greek and Hebrew glosses</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/hebrew/HebrewLetter.html" title="class in com.tyndalehouse.step.core.utils.language.hebrew">HebrewLetter</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A collection of enums to identify properties of the letter</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/utils/language/hebrew/HebrewLetterType.html" title="enum class in com.tyndalehouse.step.core.utils.language.hebrew">HebrewLetterType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Distinguishes between consonant and vowels</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/HebrewUtils.html" title="class in com.tyndalehouse.step.core.utils.language">HebrewUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Utilities for doing Hebrew transliteration</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/IndividualSearch.html" title="class in com.tyndalehouse.step.core.service.impl">IndividualSearch</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Represents an individual search</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/IndividualSearchTest.html" title="class in com.tyndalehouse.step.core.service.impl">IndividualSearchTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">tests for <a href="com/tyndalehouse/step/core/service/impl/IndividualSearch.html" title="class in com.tyndalehouse.step.core.service.impl"><code>IndividualSearch</code></a></div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/xsl/InterleavingProvider.html" title="interface in com.tyndalehouse.step.core.xsl">InterleavingProvider</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Defines the methods useful for xsl transforms when interleaving</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/InterleavingProviderImpl.html" title="class in com.tyndalehouse.step.core.xsl.impl">InterleavingProviderImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides the headings for any interleaved passage</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/InterleavingProviderImplTest.html" title="class in com.tyndalehouse.step.core.xsl.impl">InterleavingProviderImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A simple test class to test to the provider</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/InterlinearMode.html" title="enum class in com.tyndalehouse.step.core.models">InterlinearMode</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3">
<div class="block">Indicates the output required by the user, interleaving, column view or interlinear.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/xsl/InterlinearProvider.html" title="interface in com.tyndalehouse.step.core.xsl">InterlinearProvider</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">An individual interlinear provider that cross-references text passed in using verse, strong, and morphology
information</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/InterlinearProviderImpl.html" title="class in com.tyndalehouse.step.core.xsl.impl">InterlinearProviderImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">This object is not purposed to be used as a singleton.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/InterlinearProviderImplTest.html" title="class in com.tyndalehouse.step.core.xsl.impl">InterlinearProviderImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A simple test class to test to the provider</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/InternationalRangeService.html" title="interface in com.tyndalehouse.step.core.service">InternationalRangeService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/InternationalRangeServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">InternationalRangeServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Looks up the app.bibleRanges property, and returns internationalised versions of the range name and range key, in the
form of a BookName</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/IOUtils.html" title="class in com.tyndalehouse.step.core.utils">IOUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Some IO Utils for use in the STEP application.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordAnalysisService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordAnalysisService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Defines an interface for obtaining various stats on a passage.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordAnalysisServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordAnalysisServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class JSwordAnalysisServiceImpl.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordAnalysisServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordAnalysisServiceImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class JSwordAnalysisServiceImplTest.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordMetadataService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordMetadataService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The service providing access to JSword.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordMetadataServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordMetadataServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides metadata for JSword modules</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordModuleService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordModuleService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The service providing access to JSword.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordModuleServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordModuleServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Service to manipulate modules</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordPassageService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordPassageService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The service providing access to JSword.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordPassageServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordPassageServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">a service providing a wrapper around JSword</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordPassageServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordPassageServiceImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">a service providing a wrapper around JSword</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/JSwordRelatedVersesService.html" title="interface in com.tyndalehouse.step.core.service">JSwordRelatedVersesService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/JSwordRelatedVersesServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">JSwordRelatedVersesServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordSearchService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordSearchService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Searches across jsword modules</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordSearchServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordSearchServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">API to search across the data</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordSearchServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordSearchServiceImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests the various searches</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/helpers/JSwordStrongNumberHelper.html" title="class in com.tyndalehouse.step.core.service.jsword.helpers">JSwordStrongNumberHelper</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides each strong number given a verse.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/JSwordUtils.html" title="class in com.tyndalehouse.step.core.utils">JSwordUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">a set of utility methods to manipulate the JSword objects coming out</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/jsword/JSwordVersificationService.html" title="interface in com.tyndalehouse.step.core.service.jsword">JSwordVersificationService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Some generally useful methods for dealing with versification.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/JSwordVersificationServiceImpl.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">JSwordVersificationServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Deals with the versification</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/KeyedSearchResultSearchEntry.html" title="class in com.tyndalehouse.step.core.models.search">KeyedSearchResultSearchEntry</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Wraps around all heading results kind of searches for Subjects</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/KeyedVerseContent.html" title="class in com.tyndalehouse.step.core.models.search">KeyedVerseContent</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Keyed content, e.g.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/KeyWrapper.html" title="class in com.tyndalehouse.step.core.models">KeyWrapper</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Wraps around an OSIS Key</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/Language.html" title="class in com.tyndalehouse.step.core.models">Language</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class Language.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/LanguageService.html" title="interface in com.tyndalehouse.step.core.service">LanguageService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The Class LanguageService.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/LanguageServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">LanguageServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A simple service that returns all the languages that are available</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/LanguageServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.impl">LanguageServiceImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests <a href="com/tyndalehouse/step/core/service/impl/LanguageServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl"><code>LanguageServiceImpl</code></a></div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/LexicalSearchEntry.html" title="class in com.tyndalehouse.step.core.models.search">LexicalSearchEntry</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/impl/LexiconDataProvider.html" title="interface in com.tyndalehouse.step.core.service.impl">LexiconDataProvider</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Provides an abstraction around this to get one piece of data out</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/LexiconDefinitionService.html" title="interface in com.tyndalehouse.step.core.service">LexiconDefinitionService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Defines the contract for getting lexicon definitions out of Lucene</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/LexiconDefinitionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">LexiconDefinitionServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/LexiconSuggestion.html" title="class in com.tyndalehouse.step.core.models">LexiconSuggestion</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/create/Loader.html" title="class in com.tyndalehouse.step.core.data.create">Loader</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">The object that will be responsible for loading all the data into Lucene and downloading key versions of
the Bible.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/create/LoaderTest.html" title="class in com.tyndalehouse.step.core.data.create">LoaderTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests the loading of the all loaders</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/LocalisedException.html" title="class in com.tyndalehouse.step.core.exceptions">LocalisedException</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
<div class="block">The default exception to be thrown throughout the application.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/LookupOption.html" title="enum class in com.tyndalehouse.step.core.models">LookupOption</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Outlines a list of options available in lookup</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/LookupOptionTest.html" title="class in com.tyndalehouse.step.core.models">LookupOptionTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/LuceneSearchException.html" title="class in com.tyndalehouse.step.core.exceptions">LuceneSearchException</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab5"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/LuceneUtils.html" title="class in com.tyndalehouse.step.core.utils">LuceneUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Utilities to help with index reading</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/MeaningSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">MeaningSuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/MockJSwordPassageServiceImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">MockJSwordPassageServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">This is a mock class and as a result has very few implemented methods</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/data/create/ModuleLoader.html" title="interface in com.tyndalehouse.step.core.data.create">ModuleLoader</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">A simple interface for all module loaders to implement</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/ModuleService.html" title="interface in com.tyndalehouse.step.core.service">ModuleService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Interface to the service that gives information about the books of the bible, the different types of bible,
etc.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/ModuleServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">ModuleServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Looks up module information, for example lexicon definitions for particular references</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/MorphologyProcessor.html" title="class in com.tyndalehouse.step.core.data.processors">MorphologyProcessor</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Cleanses strings in descriptions</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/MorphologyService.html" title="interface in com.tyndalehouse.step.core.service">MorphologyService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">The service providing morphology information</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/MorphologyServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">MorphologyServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides quick access to the morphology from a code found in the xsl transformation</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/xsl/MultiInterlinearProvider.html" title="interface in com.tyndalehouse.step.core.xsl">MultiInterlinearProvider</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">the Interface that a Mutli interlinear provider shall abide to</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/MultiInterlinearProviderImpl.html" title="class in com.tyndalehouse.step.core.xsl.impl">MultiInterlinearProviderImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">This implementation will support multiple versions, so each of the methods is keyed by version requested.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/MultiInterlinearProviderImplTest.html" title="class in com.tyndalehouse.step.core.xsl.impl">MultiInterlinearProviderImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests the version splitters</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/NaveAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">NaveAnalyzer</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">analyzes Nave modules</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/NaveProcessor.html" title="class in com.tyndalehouse.step.core.data.processors">NaveProcessor</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Adds generated fields to the entity document - affects both "definition" and "specificForm"</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/NaveProcessorTest.html" title="class in com.tyndalehouse.step.core.data.processors">NaveProcessorTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/filters/NormalizerFilter.html" title="class in com.tyndalehouse.step.core.data.filters">NormalizerFilter</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Normalizes the String and removes any accents</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/Note.html" title="class in com.tyndalehouse.step.core.models">Note</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A Note describes all metadata and data associated with personal notes</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/NotesService.html" title="interface in com.tyndalehouse.step.core.service">NotesService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Allows access to personal notes</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/guice/providers/OfflineInstallersProvider.html" title="class in com.tyndalehouse.step.core.guice.providers">OfflineInstallersProvider</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Provides only offline installers</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/search/OriginalWordSuggestionService.html" title="interface in com.tyndalehouse.step.core.service.search">OriginalWordSuggestionService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Interface to search for relevant suggestions for a given input, whether unicode or transliterations</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/OriginalWordSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.search.impl">OriginalWordSuggestionServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Runs all original word searches</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/OriginalWordUtils.html" title="class in com.tyndalehouse.step.core.service.helpers">OriginalWordUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Static helper methods used by various services</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/OsisWrapper.html" title="class in com.tyndalehouse.step.core.models">OsisWrapper</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A simple wrapper around a string for returning as a JSON-mapped object</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/common/PartialDate.html" title="class in com.tyndalehouse.step.core.data.common">PartialDate</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">This class is the way dates are represented in the databased and they should be parsed back into this
object on their way out!
The date field indicates when the event (or start of the event) took place, the precision type indicates
whether how much of the date can be trusted...</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/common/PartialDateTest.html" title="class in com.tyndalehouse.step.core.data.common">PartialDateTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Checks different types of parsing functionality for parsing dates</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/PassageOptionsValidationService.html" title="interface in com.tyndalehouse.step.core.service">PassageOptionsValidationService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/PassageOptionsValidationServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">PassageOptionsValidationServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/stats/PassageStat.html" title="class in com.tyndalehouse.step.core.models.stats">PassageStat</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/models/search/PopularSuggestion.html" title="interface in com.tyndalehouse.step.core.models.search">PopularSuggestion</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/PorterStemmerAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">PorterStemmerAnalyzer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">porter stemmer only with lower casing and stop words</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/data/create/PostProcessor.html" title="interface in com.tyndalehouse.step.core.data.create">PostProcessor</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Post-processes a document before it is added to the index</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/data/common/PrecisionType.html" title="enum class in com.tyndalehouse.step.core.data.common">PrecisionType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Precision type indicating how trustworthy a date is when passed through the system</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/ReferenceAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">ReferenceAnalyzer</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/ReferenceSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">ReferenceSuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The getExactTerms method will attempt to parse the key as is, using the key factory.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/ReferenceSuggestionServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">ReferenceSuggestionServiceImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/RequiresLoginException.html" title="class in com.tyndalehouse.step.core.exceptions">RequiresLoginException</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab5">
<div class="block">The default exception to be thrown when a feature is unavailable because authentication is required.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/stats/ScopeType.html" title="enum class in com.tyndalehouse.step.core.models.stats">ScopeType</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/models/search/SearchEntry.html" title="interface in com.tyndalehouse.step.core.models.search">SearchEntry</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">An interface indicating that the object contains 1 search result entry</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/SearchQuery.html" title="class in com.tyndalehouse.step.core.service.impl">SearchQuery</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Search query object.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/SearchResult.html" title="class in com.tyndalehouse.step.core.models.search">SearchResult</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/SearchService.html" title="interface in com.tyndalehouse.step.core.service">SearchService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Runs various searches across the underlying database</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/SearchServiceImpl.html" title="class in com.tyndalehouse.step.core.service.search.impl">SearchServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A federated search service implementation.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/SearchServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.search.impl">SearchServiceImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Search service testing</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/SearchToken.html" title="class in com.tyndalehouse.step.core.models">SearchToken</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/service/impl/SearchType.html" title="enum class in com.tyndalehouse.step.core.service.impl">SearchType</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3">
<div class="block">Indicates the type of search that is executed.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/ShortLexiconDefinition.html" title="class in com.tyndalehouse.step.core.models">ShortLexiconDefinition</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A very short lexicon definition</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/SingleSuggestionsSummary.html" title="class in com.tyndalehouse.step.core.models">SingleSuggestionsSummary</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/SingleTypeSuggestionService.html" title="interface in com.tyndalehouse.step.core.service">SingleTypeSuggestionService</a><<a href="com/tyndalehouse/step/core/service/SingleTypeSuggestionService.html" title="type parameter in SingleTypeSuggestionService">T</a>,<wbr><a href="com/tyndalehouse/step/core/service/SingleTypeSuggestionService.html" title="type parameter in SingleTypeSuggestionService">S</a>></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/SortingUtils.html" title="class in com.tyndalehouse.step.core.utils">SortingUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">a set of utility methods to sort various collections</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/utils/language/hebrew/SoundingType.html" title="enum class in com.tyndalehouse.step.core.utils.language.hebrew">SoundingType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Vowel types</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/SpecificFormAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">SpecificFormAnalyzer</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Analyzer for specific forms</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/create/SpecificFormsLoader.html" title="class in com.tyndalehouse.step.core.data.create">SpecificFormsLoader</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Loads up all lexical forms</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/stats/StatType.html" title="enum class in com.tyndalehouse.step.core.models.stats">StatType</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/jsword/impl/StepConfigValueInterceptor.html" title="class in com.tyndalehouse.step.core.service.jsword.impl">StepConfigValueInterceptor</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Config value interceptor, to decrypt STEP cipher keys</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/guice/StepCoreModule.html" title="class in com.tyndalehouse.step.core.guice">StepCoreModule</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">The module configuration that configures the application via guice</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/StepHttpSwordInstaller.html" title="class in com.tyndalehouse.step.core.data">StepHttpSwordInstaller</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Bases the list of books based on the directory listing of a particular folder, as opposed to a zip file of some kind.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/StepInternalException.html" title="class in com.tyndalehouse.step.core.exceptions">StepInternalException</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
<div class="block">The default exception to be thrown throughout the application.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/loaders/StreamingCsvModuleLoader.html" title="class in com.tyndalehouse.step.core.data.loaders">StreamingCsvModuleLoader</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Loads modules straight from a CSV file to a database form</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/StringAndCount.html" title="class in com.tyndalehouse.step.core.models">StringAndCount</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Wraps a string and a count
Created by cjburrell on 23/04/2014.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/StringConversionUtils.html" title="class in com.tyndalehouse.step.core.utils">StringConversionUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A collection of utility methods enabling us to convert Strings, references one way or another.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/StringConversionUtilsTest.html" title="class in com.tyndalehouse.step.core.utils">StringConversionUtilsTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests the utility method for converting strings</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/transliteration/StringToStringRule.html" title="class in com.tyndalehouse.step.core.utils.language.transliteration">StringToStringRule</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Replaces a single character with a set of options</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/StringUtils.html" title="class in com.tyndalehouse.step.core.utils">StringUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">To avoid having large libraries, we provide here a small set of methods that can be used to perform various
string operations</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/StringUtilsTest.html" title="class in com.tyndalehouse.step.core.utils">StringUtilsTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests the <a href="com/tyndalehouse/step/core/utils/StringUtils.html" title="class in com.tyndalehouse.step.core.utils"><code>StringUtils</code></a> class</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/StrongAugmentationService.html" title="interface in com.tyndalehouse.step.core.service">StrongAugmentationService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Given a strong number, we find the augmented version in order to provide more accurate definitions and context</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/StrongAugmentationService.AugmentedStrongsForSearchCount.html" title="class in com.tyndalehouse.step.core.service">StrongAugmentationService.AugmentedStrongsForSearchCount</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/StrongAugmentationServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">StrongAugmentationServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Strong augmentation service to provide better context/definitions to the end user.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/StrongCountsAndSubjects.html" title="class in com.tyndalehouse.step.core.models.search">StrongCountsAndSubjects</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A holder for counts of strongs in the bibles and the actual Strongs data</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/SubjectEntries.html" title="class in com.tyndalehouse.step.core.models.search">SubjectEntries</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Wraps the a list of OsisWrappers representing the search results together
with a flag to indicate that the master version has been swapped</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/search/SubjectEntrySearchService.html" title="interface in com.tyndalehouse.step.core.service.search">SubjectEntrySearchService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">Searches for a specific subject</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/SubjectEntryServiceImpl.html" title="class in com.tyndalehouse.step.core.service.search.impl">SubjectEntryServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Retrieves the entries from a subject search</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/SubjectHeadingSearchEntry.html" title="class in com.tyndalehouse.step.core.models.search">SubjectHeadingSearchEntry</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Wraps around all heading results kind of searches for Subjects</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/search/SubjectSearchService.html" title="interface in com.tyndalehouse.step.core.service.search">SubjectSearchService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Searches for a specific subject</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/search/impl/SubjectSearchServiceImpl.html" title="class in com.tyndalehouse.step.core.service.search.impl">SubjectSearchServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Searches for a subject</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/SubjectSuggestion.html" title="class in com.tyndalehouse.step.core.models.search">SubjectSuggestion</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/SubjectSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">SubjectSuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/SuggestionCollector.html" title="class in com.tyndalehouse.step.core.service.helpers">SuggestionCollector</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/SuggestionContext.html" title="class in com.tyndalehouse.step.core.service.helpers">SuggestionContext</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Holds various information about the context into which a user is typing.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/SuggestionService.html" title="interface in com.tyndalehouse.step.core.service">SuggestionService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The suggestion service will provide two sets of results.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/SuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">SuggestionServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Suggestion service, helping the auto suggestion search dropdown.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/SuggestionsSummary.html" title="class in com.tyndalehouse.step.core.models">SuggestionsSummary</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/models/search/SuggestionType.html" title="enum class in com.tyndalehouse.step.core.models.search">SuggestionType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">A type of lexical suggestion</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/SupportRequestService.html" title="interface in com.tyndalehouse.step.core.service">SupportRequestService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/SupportRequestServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">SupportRequestServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Accesses JIRA to raise a support request.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/SwingService.html" title="interface in com.tyndalehouse.step.core.service">SwingService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/SwingServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">SwingServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">This class wraps around the Swing interface!</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/SyntaxSuggestion.html" title="class in com.tyndalehouse.step.core.models.search">SyntaxSuggestion</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/common/TermsAndMaxCount.html" title="class in com.tyndalehouse.step.core.data.common">TermsAndMaxCount</a><<a href="com/tyndalehouse/step/core/data/common/TermsAndMaxCount.html" title="type parameter in TermsAndMaxCount">T</a>></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Holds a set of matching terms, with the total potential count of all terms</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/TestEntityIndexReaderImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">TestEntityIndexReaderImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Memory only lucene indexes...</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/TestEntityIndexWriterImpl.html" title="class in com.tyndalehouse.step.core.data.entities.impl">TestEntityIndexWriterImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A test version</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/TestEntityManager.html" title="class in com.tyndalehouse.step.core.data.entities.impl">TestEntityManager</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">a test entity manager, which gives us indexes in memory</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/impl/TestLuceneIndexDirectory.html" title="class in com.tyndalehouse.step.core.data.entities.impl">TestLuceneIndexDirectory</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A singleton to help locate the lucene indexes in testing</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/TestUtils.html" title="class in com.tyndalehouse.step.core.utils">TestUtils</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">static utilities for testing, creating entities, etc.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/TextSuggestion.html" title="class in com.tyndalehouse.step.core.models.search">TextSuggestion</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/suggestion/TextSuggestionServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl.suggestion">TextSuggestionServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Perhaps in the future, we will tie this into an English dictionary.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/TimelineAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">TimelineAnalyzer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Geography analyzer</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/entities/aggregations/TimelineEventsAndDate.html" title="class in com.tyndalehouse.step.core.data.entities.aggregations">TimelineEventsAndDate</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">A simple wrapper around a timeline set of events and a central date</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/TimelineEventSearchEntry.html" title="class in com.tyndalehouse.step.core.models.search">TimelineEventSearchEntry</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Carries timeline events</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/TimelineService.html" title="interface in com.tyndalehouse.step.core.service">TimelineService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">The timeline service gives access to all the data relating to the timeline the events, the configuration,
etc.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/TimelineServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">TimelineServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The implementation of the timeline service, based on JDBC and ORM Lite to access the database.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/TranslatedException.html" title="class in com.tyndalehouse.step.core.exceptions">TranslatedException</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
<div class="block">The default exception to be thrown throughout the application.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/analyzers/TransliterationAnalyzer.html" title="class in com.tyndalehouse.step.core.data.analyzers">TransliterationAnalyzer</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">An analyzer for transliterations</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/filters/TransliterationCleaningFilter.html" title="class in com.tyndalehouse.step.core.data.filters">TransliterationCleaningFilter</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Cleans up transliterations by removing any extra character</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/language/transliteration/TransliterationOption.html" title="class in com.tyndalehouse.step.core.utils.language.transliteration">TransliterationOption</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">An option in a transliteration is a String that is built up, plus the current position tracked to the
original word</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/utils/language/transliteration/TransliterationRule.html" title="interface in com.tyndalehouse.step.core.utils.language.transliteration">TransliterationRule</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/data/processors/TransliteratorProcessor.html" title="class in com.tyndalehouse.step.core.data.processors">TransliteratorProcessor</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Adds generated fields to the entity document - affects both "definition" and "specificForm"</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/TrimmedLookupOption.html" title="class in com.tyndalehouse.step.core.models">TrimmedLookupOption</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">An option that was removed because it was incompatible with how a passage was being looked up</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/exceptions/UserExceptionType.html" title="enum class in com.tyndalehouse.step.core.exceptions">UserExceptionType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Contains a list of errors and their corresponding error messages, a step towards localisation</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/UserService.html" title="interface in com.tyndalehouse.step.core.service">UserService</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab1">
<div class="block">Checks the identify of a user</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/UserServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">UserServiceImpl</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">A user service implementation, that checks whether a user is allowed in.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/UserServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.impl">UserServiceImplTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Checks a user is valid</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/utils/ValidateUtils.html" title="class in com.tyndalehouse.step.core.utils">ValidateUtils</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Checks various assertions and throws the exception: <a href="com/tyndalehouse/step/core/exceptions/ValidationException.html" title="class in com.tyndalehouse.step.core.exceptions"><code>ValidationException</code></a></div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab5"><a href="com/tyndalehouse/step/core/exceptions/ValidationException.html" title="class in com.tyndalehouse.step.core.exceptions">ValidationException</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab5">
<div class="block">The default exception to be thrown throughout the application when a validation exception has occurred.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/search/VerseSearchEntry.html" title="class in com.tyndalehouse.step.core.models.search">VerseSearchEntry</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Represents a result that was a match to the original query</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/meanings/VersionPhraseAlternative.html" title="class in com.tyndalehouse.step.core.models.meanings">VersionPhraseAlternative</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Represents a particular alternative.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/VersionResolver.html" title="class in com.tyndalehouse.step.core.service.helpers">VersionResolver</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Version resolver resolved from a short initial version to the proper crosswire initials</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/helpers/VersionResolverTest.html" title="class in com.tyndalehouse.step.core.service.helpers">VersionResolverTest</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2"> </div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/meanings/VersionsData.html" title="class in com.tyndalehouse.step.core.models.meanings">VersionsData</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class VersionsData.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/meanings/VersionVersePhraseOption.html" title="class in com.tyndalehouse.step.core.models.meanings">VersionVersePhraseOption</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">Represents a portion of text that has alternatives.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/meanings/VersionVerses.html" title="class in com.tyndalehouse.step.core.models.meanings">VersionVerses</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">This repreents a set of verses for a particular verse.</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/models/VocabResponse.html" title="class in com.tyndalehouse.step.core.models">VocabResponse</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">The Class VocabResponse.</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab1"><a href="com/tyndalehouse/step/core/service/VocabularyService.html" title="interface in com.tyndalehouse.step.core.service">VocabularyService</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab1">
<div class="block">The service providing morphology information</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/VocabularyServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl">VocabularyServiceImpl</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">
<div class="block">defines all vocab related queries</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/service/impl/VocabularyServiceImplTest.html" title="class in com.tyndalehouse.step.core.service.impl">VocabularyServiceImplTest</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
<div class="block">Tests <a href="com/tyndalehouse/step/core/service/impl/VocabularyServiceImpl.html" title="class in com.tyndalehouse.step.core.service.impl"><code>VocabularyServiceImpl</code></a></div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/utils/language/hebrew/VowelLengthType.html" title="enum class in com.tyndalehouse.step.core.utils.language.hebrew">VowelLengthType</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab3">
<div class="block">Vowel types</div>
</div>
<div class="col-first even-row-color all-classes-table all-classes-table-tab3"><a href="com/tyndalehouse/step/core/utils/language/hebrew/VowelStressType.html" title="enum class in com.tyndalehouse.step.core.utils.language.hebrew">VowelStressType</a></div>
<div class="col-last even-row-color all-classes-table all-classes-table-tab3">
<div class="block">Vowel types</div>
</div>
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/tyndalehouse/step/core/xsl/impl/Word.html" title="class in com.tyndalehouse.step.core.xsl.impl">Word</a></div>
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">