-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AnalyzerName.cs
1044 lines (846 loc) · 38.3 KB
/
AnalyzerName.cs
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
namespace Microsoft.Azure.Search.Models
{
using System;
using Microsoft.Azure.Search.Common;
using Newtonsoft.Json;
using Serialization;
/// <summary>
/// Defines the names of all text analyzers supported by Azure Cognitive Search.
/// <see href="https://docs.microsoft.com/rest/api/searchservice/Language-support"/>
/// </summary>
[JsonConverter(typeof(ExtensibleEnumConverter<AnalyzerName>))]
public struct AnalyzerName : IEquatable<AnalyzerName>
{
private readonly string _value;
// MAINTENANCE NOTE: Keep the language analyzers ordered the same as the table on this page:
// https://docs.microsoft.com/rest/api/searchservice/Language-support
// The other pre-defined analyzers come next, and should be ordered the same as the table on this page:
// https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search
/// <summary>
/// Microsoft analyzer for Arabic.
/// </summary>
public static readonly AnalyzerName ArMicrosoft = new AnalyzerName(AsString.ArMicrosoft);
/// <summary>
/// Lucene analyzer for Arabic.
/// </summary>
public static readonly AnalyzerName ArLucene = new AnalyzerName(AsString.ArLucene);
/// <summary>
/// Lucene analyzer for Armenian.
/// </summary>
public static readonly AnalyzerName HyLucene = new AnalyzerName(AsString.HyLucene);
/// <summary>
/// Microsoft analyzer for Bangla.
/// </summary>
public static readonly AnalyzerName BnMicrosoft = new AnalyzerName(AsString.BnMicrosoft);
/// <summary>
/// Lucene analyzer for Basque.
/// </summary>
public static readonly AnalyzerName EuLucene = new AnalyzerName(AsString.EuLucene);
/// <summary>
/// Microsoft analyzer for Bulgarian.
/// </summary>
public static readonly AnalyzerName BgMicrosoft = new AnalyzerName(AsString.BgMicrosoft);
/// <summary>
/// Lucene analyzer for Bulgarian.
/// </summary>
public static readonly AnalyzerName BgLucene = new AnalyzerName(AsString.BgLucene);
/// <summary>
/// Microsoft analyzer for Catalan.
/// </summary>
public static readonly AnalyzerName CaMicrosoft = new AnalyzerName(AsString.CaMicrosoft);
/// <summary>
/// Lucene analyzer for Catalan.
/// </summary>
public static readonly AnalyzerName CaLucene = new AnalyzerName(AsString.CaLucene);
/// <summary>
/// Microsoft analyzer for Chinese (Simplified).
/// </summary>
public static readonly AnalyzerName ZhHansMicrosoft = new AnalyzerName(AsString.ZhHansMicrosoft);
/// <summary>
/// Lucene analyzer for Chinese (Simplified).
/// </summary>
public static readonly AnalyzerName ZhHansLucene = new AnalyzerName(AsString.ZhHansLucene);
/// <summary>
/// Microsoft analyzer for Chinese (Traditional).
/// </summary>
public static readonly AnalyzerName ZhHantMicrosoft = new AnalyzerName(AsString.ZhHantMicrosoft);
/// <summary>
/// Lucene analyzer for Chinese (Traditional).
/// </summary>
public static readonly AnalyzerName ZhHantLucene = new AnalyzerName(AsString.ZhHantLucene);
/// <summary>
/// Microsoft analyzer for Croatian.
/// </summary>
public static readonly AnalyzerName HrMicrosoft = new AnalyzerName(AsString.HrMicrosoft);
/// <summary>
/// Microsoft analyzer for Czech.
/// </summary>
public static readonly AnalyzerName CsMicrosoft = new AnalyzerName(AsString.CsMicrosoft);
/// <summary>
/// Lucene analyzer for Czech.
/// </summary>
public static readonly AnalyzerName CsLucene = new AnalyzerName(AsString.CsLucene);
/// <summary>
/// Microsoft analyzer for Danish.
/// </summary>
public static readonly AnalyzerName DaMicrosoft = new AnalyzerName(AsString.DaMicrosoft);
/// <summary>
/// Lucene analyzer for Danish.
/// </summary>
public static readonly AnalyzerName DaLucene = new AnalyzerName(AsString.DaLucene);
/// <summary>
/// Microsoft analyzer for Dutch.
/// </summary>
public static readonly AnalyzerName NlMicrosoft = new AnalyzerName(AsString.NlMicrosoft);
/// <summary>
/// Lucene analyzer for Dutch.
/// </summary>
public static readonly AnalyzerName NlLucene = new AnalyzerName(AsString.NlLucene);
/// <summary>
/// Microsoft analyzer for English.
/// </summary>
public static readonly AnalyzerName EnMicrosoft = new AnalyzerName(AsString.EnMicrosoft);
/// <summary>
/// Lucene analyzer for English.
/// </summary>
public static readonly AnalyzerName EnLucene = new AnalyzerName(AsString.EnLucene);
/// <summary>
/// Microsoft analyzer for Estonian.
/// </summary>
public static readonly AnalyzerName EtMicrosoft = new AnalyzerName(AsString.EtMicrosoft);
/// <summary>
/// Microsoft analyzer for Finnish.
/// </summary>
public static readonly AnalyzerName FiMicrosoft = new AnalyzerName(AsString.FiMicrosoft);
/// <summary>
/// Lucene analyzer for Finnish.
/// </summary>
public static readonly AnalyzerName FiLucene = new AnalyzerName(AsString.FiLucene);
/// <summary>
/// Microsoft analyzer for French.
/// </summary>
public static readonly AnalyzerName FrMicrosoft = new AnalyzerName(AsString.FrMicrosoft);
/// <summary>
/// Lucene analyzer for French.
/// </summary>
public static readonly AnalyzerName FrLucene = new AnalyzerName(AsString.FrLucene);
/// <summary>
/// Lucene analyzer for Galician.
/// </summary>
public static readonly AnalyzerName GlLucene = new AnalyzerName(AsString.GlLucene);
/// <summary>
/// Microsoft analyzer for German.
/// </summary>
public static readonly AnalyzerName DeMicrosoft = new AnalyzerName(AsString.DeMicrosoft);
/// <summary>
/// Lucene analyzer for German.
/// </summary>
public static readonly AnalyzerName DeLucene = new AnalyzerName(AsString.DeLucene);
/// <summary>
/// Microsoft analyzer for Greek.
/// </summary>
public static readonly AnalyzerName ElMicrosoft = new AnalyzerName(AsString.ElMicrosoft);
/// <summary>
/// Lucene analyzer for Greek.
/// </summary>
public static readonly AnalyzerName ElLucene = new AnalyzerName(AsString.ElLucene);
/// <summary>
/// Microsoft analyzer for Gujarati.
/// </summary>
public static readonly AnalyzerName GuMicrosoft = new AnalyzerName(AsString.GuMicrosoft);
/// <summary>
/// Microsoft analyzer for Hebrew.
/// </summary>
public static readonly AnalyzerName HeMicrosoft = new AnalyzerName(AsString.HeMicrosoft);
/// <summary>
/// Microsoft analyzer for Hindi.
/// </summary>
public static readonly AnalyzerName HiMicrosoft = new AnalyzerName(AsString.HiMicrosoft);
/// <summary>
/// Lucene analyzer for Hindi.
/// </summary>
public static readonly AnalyzerName HiLucene = new AnalyzerName(AsString.HiLucene);
/// <summary>
/// Microsoft analyzer for Hungarian.
/// </summary>
public static readonly AnalyzerName HuMicrosoft = new AnalyzerName(AsString.HuMicrosoft);
/// <summary>
/// Lucene analyzer for Hungarian.
/// </summary>
public static readonly AnalyzerName HuLucene = new AnalyzerName(AsString.HuLucene);
/// <summary>
/// Microsoft analyzer for Icelandic.
/// </summary>
public static readonly AnalyzerName IsMicrosoft = new AnalyzerName(AsString.IsMicrosoft);
/// <summary>
/// Microsoft analyzer for Indonesian (Bahasa).
/// </summary>
public static readonly AnalyzerName IdMicrosoft = new AnalyzerName(AsString.IdMicrosoft);
/// <summary>
/// Lucene analyzer for Indonesian.
/// </summary>
public static readonly AnalyzerName IdLucene = new AnalyzerName(AsString.IdLucene);
/// <summary>
/// Lucene analyzer for Irish.
/// </summary>
public static readonly AnalyzerName GaLucene = new AnalyzerName(AsString.GaLucene);
/// <summary>
/// Microsoft analyzer for Italian.
/// </summary>
public static readonly AnalyzerName ItMicrosoft = new AnalyzerName(AsString.ItMicrosoft);
/// <summary>
/// Lucene analyzer for Italian.
/// </summary>
public static readonly AnalyzerName ItLucene = new AnalyzerName(AsString.ItLucene);
/// <summary>
/// Microsoft analyzer for Japanese.
/// </summary>
public static readonly AnalyzerName JaMicrosoft = new AnalyzerName(AsString.JaMicrosoft);
/// <summary>
/// Lucene analyzer for Japanese.
/// </summary>
public static readonly AnalyzerName JaLucene = new AnalyzerName(AsString.JaLucene);
/// <summary>
/// Microsoft analyzer for Kannada.
/// </summary>
public static readonly AnalyzerName KnMicrosoft = new AnalyzerName(AsString.KnMicrosoft);
/// <summary>
/// Microsoft analyzer for Korean.
/// </summary>
public static readonly AnalyzerName KoMicrosoft = new AnalyzerName(AsString.KoMicrosoft);
/// <summary>
/// Lucene analyzer for Korean.
/// </summary>
public static readonly AnalyzerName KoLucene = new AnalyzerName(AsString.KoLucene);
/// <summary>
/// Microsoft analyzer for Latvian.
/// </summary>
public static readonly AnalyzerName LvMicrosoft = new AnalyzerName(AsString.LvMicrosoft);
/// <summary>
/// Lucene analyzer for Latvian.
/// </summary>
public static readonly AnalyzerName LvLucene = new AnalyzerName(AsString.LvLucene);
/// <summary>
/// Microsoft analyzer for Lithuanian.
/// </summary>
public static readonly AnalyzerName LtMicrosoft = new AnalyzerName(AsString.LtMicrosoft);
/// <summary>
/// Microsoft analyzer for Malayalam.
/// </summary>
public static readonly AnalyzerName MlMicrosoft = new AnalyzerName(AsString.MlMicrosoft);
/// <summary>
/// Microsoft analyzer for Malay (Latin).
/// </summary>
public static readonly AnalyzerName MsMicrosoft = new AnalyzerName(AsString.MsMicrosoft);
/// <summary>
/// Microsoft analyzer for Marathi.
/// </summary>
public static readonly AnalyzerName MrMicrosoft = new AnalyzerName(AsString.MrMicrosoft);
/// <summary>
/// Microsoft analyzer for Norwegian (Bokmål).
/// </summary>
public static readonly AnalyzerName NbMicrosoft = new AnalyzerName(AsString.NbMicrosoft);
/// <summary>
/// Lucene analyzer for Norwegian.
/// </summary>
public static readonly AnalyzerName NoLucene = new AnalyzerName(AsString.NoLucene);
/// <summary>
/// Lucene analyzer for Persian.
/// </summary>
public static readonly AnalyzerName FaLucene = new AnalyzerName(AsString.FaLucene);
/// <summary>
/// Microsoft analyzer for Polish.
/// </summary>
public static readonly AnalyzerName PlMicrosoft = new AnalyzerName(AsString.PlMicrosoft);
/// <summary>
/// Lucene analyzer for Polish.
/// </summary>
public static readonly AnalyzerName PlLucene = new AnalyzerName(AsString.PlLucene);
/// <summary>
/// Microsoft analyzer for Portuguese (Brazil).
/// </summary>
public static readonly AnalyzerName PtBrMicrosoft = new AnalyzerName(AsString.PtBrMicrosoft);
/// <summary>
/// Lucene analyzer for Portuguese (Brazil).
/// </summary>
public static readonly AnalyzerName PtBRLucene = new AnalyzerName(AsString.PtBRLucene);
/// <summary>
/// Microsoft analyzer for Portuguese (Portugal).
/// </summary>
public static readonly AnalyzerName PtPtMicrosoft = new AnalyzerName(AsString.PtPtMicrosoft);
/// <summary>
/// Lucene analyzer for Portuguese (Portugal).
/// </summary>
public static readonly AnalyzerName PtPTLucene = new AnalyzerName(AsString.PtPTLucene);
/// <summary>
/// Microsoft analyzer for Punjabi.
/// </summary>
public static readonly AnalyzerName PaMicrosoft = new AnalyzerName(AsString.PaMicrosoft);
/// <summary>
/// Microsoft analyzer for Romanian.
/// </summary>
public static readonly AnalyzerName RoMicrosoft = new AnalyzerName(AsString.RoMicrosoft);
/// <summary>
/// Lucene analyzer for Romanian.
/// </summary>
public static readonly AnalyzerName RoLucene = new AnalyzerName(AsString.RoLucene);
/// <summary>
/// Microsoft analyzer for Russian.
/// </summary>
public static readonly AnalyzerName RuMicrosoft = new AnalyzerName(AsString.RuMicrosoft);
/// <summary>
/// Lucene analyzer for Russian.
/// </summary>
public static readonly AnalyzerName RuLucene = new AnalyzerName(AsString.RuLucene);
/// <summary>
/// Microsoft analyzer for Serbian (Cyrillic).
/// </summary>
public static readonly AnalyzerName SrCyrillicMicrosoft = new AnalyzerName(AsString.SrCyrillicMicrosoft);
/// <summary>
/// Microsoft analyzer for Serbian (Latin).
/// </summary>
public static readonly AnalyzerName SrLatinMicrosoft = new AnalyzerName(AsString.SrLatinMicrosoft);
/// <summary>
/// Microsoft analyzer for Slovak.
/// </summary>
public static readonly AnalyzerName SkMicrosoft = new AnalyzerName(AsString.SkMicrosoft);
/// <summary>
/// Microsoft analyzer for Slovenian.
/// </summary>
public static readonly AnalyzerName SlMicrosoft = new AnalyzerName(AsString.SlMicrosoft);
/// <summary>
/// Microsoft analyzer for Spanish.
/// </summary>
public static readonly AnalyzerName EsMicrosoft = new AnalyzerName(AsString.EsMicrosoft);
/// <summary>
/// Lucene analyzer for Spanish.
/// </summary>
public static readonly AnalyzerName EsLucene = new AnalyzerName(AsString.EsLucene);
/// <summary>
/// Microsoft analyzer for Swedish.
/// </summary>
public static readonly AnalyzerName SvMicrosoft = new AnalyzerName(AsString.SvMicrosoft);
/// <summary>
/// Lucene analyzer for Swedish.
/// </summary>
public static readonly AnalyzerName SvLucene = new AnalyzerName(AsString.SvLucene);
/// <summary>
/// Microsoft analyzer for Tamil.
/// </summary>
public static readonly AnalyzerName TaMicrosoft = new AnalyzerName(AsString.TaMicrosoft);
/// <summary>
/// Microsoft analyzer for Telugu.
/// </summary>
public static readonly AnalyzerName TeMicrosoft = new AnalyzerName(AsString.TeMicrosoft);
/// <summary>
/// Microsoft analyzer for Thai.
/// </summary>
public static readonly AnalyzerName ThMicrosoft = new AnalyzerName(AsString.ThMicrosoft);
/// <summary>
/// Lucene analyzer for Thai.
/// </summary>
public static readonly AnalyzerName ThLucene = new AnalyzerName(AsString.ThLucene);
/// <summary>
/// Microsoft analyzer for Turkish.
/// </summary>
public static readonly AnalyzerName TrMicrosoft = new AnalyzerName(AsString.TrMicrosoft);
/// <summary>
/// Lucene analyzer for Turkish.
/// </summary>
public static readonly AnalyzerName TrLucene = new AnalyzerName(AsString.TrLucene);
/// <summary>
/// Microsoft analyzer for Ukranian.
/// </summary>
public static readonly AnalyzerName UkMicrosoft = new AnalyzerName(AsString.UkMicrosoft);
/// <summary>
/// Microsoft analyzer for Urdu.
/// </summary>
public static readonly AnalyzerName UrMicrosoft = new AnalyzerName(AsString.UrMicrosoft);
/// <summary>
/// Microsoft analyzer for Vietnamese.
/// </summary>
public static readonly AnalyzerName ViMicrosoft = new AnalyzerName(AsString.ViMicrosoft);
/// <summary>
/// Standard Lucene analyzer.
/// </summary>
public static readonly AnalyzerName StandardLucene = new AnalyzerName(AsString.StandardLucene);
/// <summary>
/// Standard ASCII Folding Lucene analyzer.
/// <see href="https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#Analyzers" />
/// </summary>
public static readonly AnalyzerName StandardAsciiFoldingLucene =
new AnalyzerName(AsString.StandardAsciiFoldingLucene);
/// <summary>
/// Treats the entire content of a field as a single token. This is useful
/// for data like zip codes, ids, and some product names.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordAnalyzer.html" />
/// </summary>
public static readonly AnalyzerName Keyword = new AnalyzerName(AsString.Keyword);
/// <summary>
/// Flexibly separates text into terms via a regular expression pattern.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html" />
/// </summary>
public static readonly AnalyzerName Pattern = new AnalyzerName(AsString.Pattern);
/// <summary>
/// Divides text at non-letters and converts them to lower case.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/SimpleAnalyzer.html" />
/// </summary>
public static readonly AnalyzerName Simple = new AnalyzerName(AsString.Simple);
/// <summary>
/// Divides text at non-letters; Applies the lowercase and stopword token filters.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html" />
/// </summary>
public static readonly AnalyzerName Stop = new AnalyzerName(AsString.Stop);
/// <summary>
/// An analyzer that uses the whitespace tokenizer.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/WhitespaceAnalyzer.html" />
/// </summary>
public static readonly AnalyzerName Whitespace = new AnalyzerName(AsString.Whitespace);
/// <summary>
/// The names of all of the analyzers as plain strings.
/// </summary>
/// <remarks>
/// When defining an index with an attributed model, you need to specify analyzers by name, because
/// .NET custom attributes cannot be constructed with a reference to a static field. (Only constant
/// values from a limited range of types are supported.)
/// </remarks>
public static class AsString
{
/// <summary>
/// Microsoft analyzer for Arabic.
/// </summary>
public const string ArMicrosoft = "ar.microsoft";
/// <summary>
/// Lucene analyzer for Arabic.
/// </summary>
public const string ArLucene = "ar.lucene";
/// <summary>
/// Lucene analyzer for Armenian.
/// </summary>
public const string HyLucene = "hy.lucene";
/// <summary>
/// Microsoft analyzer for Bangla.
/// </summary>
public const string BnMicrosoft = "bn.microsoft";
/// <summary>
/// Lucene analyzer for Basque.
/// </summary>
public const string EuLucene = "eu.lucene";
/// <summary>
/// Microsoft analyzer for Bulgarian.
/// </summary>
public const string BgMicrosoft = "bg.microsoft";
/// <summary>
/// Lucene analyzer for Bulgarian.
/// </summary>
public const string BgLucene = "bg.lucene";
/// <summary>
/// Microsoft analyzer for Catalan.
/// </summary>
public const string CaMicrosoft = "ca.microsoft";
/// <summary>
/// Lucene analyzer for Catalan.
/// </summary>
public const string CaLucene = "ca.lucene";
/// <summary>
/// Microsoft analyzer for Chinese (Simplified).
/// </summary>
public const string ZhHansMicrosoft = "zh-Hans.microsoft";
/// <summary>
/// Lucene analyzer for Chinese (Simplified).
/// </summary>
public const string ZhHansLucene = "zh-Hans.lucene";
/// <summary>
/// Microsoft analyzer for Chinese (Traditional).
/// </summary>
public const string ZhHantMicrosoft = "zh-Hant.microsoft";
/// <summary>
/// Lucene analyzer for Chinese (Traditional).
/// </summary>
public const string ZhHantLucene = "zh-Hant.lucene";
/// <summary>
/// Microsoft analyzer for Croatian.
/// </summary>
public const string HrMicrosoft = "hr.microsoft";
/// <summary>
/// Microsoft analyzer for Czech.
/// </summary>
public const string CsMicrosoft = "cs.microsoft";
/// <summary>
/// Lucene analyzer for Czech.
/// </summary>
public const string CsLucene = "cs.lucene";
/// <summary>
/// Microsoft analyzer for Danish.
/// </summary>
public const string DaMicrosoft = "da.microsoft";
/// <summary>
/// Lucene analyzer for Danish.
/// </summary>
public const string DaLucene = "da.lucene";
/// <summary>
/// Microsoft analyzer for Dutch.
/// </summary>
public const string NlMicrosoft = "nl.microsoft";
/// <summary>
/// Lucene analyzer for Dutch.
/// </summary>
public const string NlLucene = "nl.lucene";
/// <summary>
/// Microsoft analyzer for English.
/// </summary>
public const string EnMicrosoft = "en.microsoft";
/// <summary>
/// Lucene analyzer for English.
/// </summary>
public const string EnLucene = "en.lucene";
/// <summary>
/// Microsoft analyzer for Estonian.
/// </summary>
public const string EtMicrosoft = "et.microsoft";
/// <summary>
/// Microsoft analyzer for Finnish.
/// </summary>
public const string FiMicrosoft = "fi.microsoft";
/// <summary>
/// Lucene analyzer for Finnish.
/// </summary>
public const string FiLucene = "fi.lucene";
/// <summary>
/// Microsoft analyzer for French.
/// </summary>
public const string FrMicrosoft = "fr.microsoft";
/// <summary>
/// Lucene analyzer for French.
/// </summary>
public const string FrLucene = "fr.lucene";
/// <summary>
/// Lucene analyzer for Galician.
/// </summary>
public const string GlLucene = "gl.lucene";
/// <summary>
/// Microsoft analyzer for German.
/// </summary>
public const string DeMicrosoft = "de.microsoft";
/// <summary>
/// Lucene analyzer for German.
/// </summary>
public const string DeLucene = "de.lucene";
/// <summary>
/// Microsoft analyzer for Greek.
/// </summary>
public const string ElMicrosoft = "el.microsoft";
/// <summary>
/// Lucene analyzer for Greek.
/// </summary>
public const string ElLucene = "el.lucene";
/// <summary>
/// Microsoft analyzer for Gujarati.
/// </summary>
public const string GuMicrosoft = "gu.microsoft";
/// <summary>
/// Microsoft analyzer for Hebrew.
/// </summary>
public const string HeMicrosoft = "he.microsoft";
/// <summary>
/// Microsoft analyzer for Hindi.
/// </summary>
public const string HiMicrosoft = "hi.microsoft";
/// <summary>
/// Lucene analyzer for Hindi.
/// </summary>
public const string HiLucene = "hi.lucene";
/// <summary>
/// Microsoft analyzer for Hungarian.
/// </summary>
public const string HuMicrosoft = "hu.microsoft";
/// <summary>
/// Lucene analyzer for Hungarian.
/// </summary>
public const string HuLucene = "hu.lucene";
/// <summary>
/// Microsoft analyzer for Icelandic.
/// </summary>
public const string IsMicrosoft = "is.microsoft";
/// <summary>
/// Microsoft analyzer for Indonesian (Bahasa).
/// </summary>
public const string IdMicrosoft = "id.microsoft";
/// <summary>
/// Lucene analyzer for Indonesian.
/// </summary>
public const string IdLucene = "id.lucene";
/// <summary>
/// Lucene analyzer for Irish.
/// </summary>
public const string GaLucene = "ga.lucene";
/// <summary>
/// Microsoft analyzer for Italian.
/// </summary>
public const string ItMicrosoft = "it.microsoft";
/// <summary>
/// Lucene analyzer for Italian.
/// </summary>
public const string ItLucene = "it.lucene";
/// <summary>
/// Microsoft analyzer for Japanese.
/// </summary>
public const string JaMicrosoft = "ja.microsoft";
/// <summary>
/// Lucene analyzer for Japanese.
/// </summary>
public const string JaLucene = "ja.lucene";
/// <summary>
/// Microsoft analyzer for Kannada.
/// </summary>
public const string KnMicrosoft = "kn.microsoft";
/// <summary>
/// Microsoft analyzer for Korean.
/// </summary>
public const string KoMicrosoft = "ko.microsoft";
/// <summary>
/// Lucene analyzer for Korean.
/// </summary>
public const string KoLucene = "ko.lucene";
/// <summary>
/// Microsoft analyzer for Latvian.
/// </summary>
public const string LvMicrosoft = "lv.microsoft";
/// <summary>
/// Lucene analyzer for Latvian.
/// </summary>
public const string LvLucene = "lv.lucene";
/// <summary>
/// Microsoft analyzer for Lithuanian.
/// </summary>
public const string LtMicrosoft = "lt.microsoft";
/// <summary>
/// Microsoft analyzer for Malayalam.
/// </summary>
public const string MlMicrosoft = "ml.microsoft";
/// <summary>
/// Microsoft analyzer for Malay (Latin).
/// </summary>
public const string MsMicrosoft = "ms.microsoft";
/// <summary>
/// Microsoft analyzer for Marathi.
/// </summary>
public const string MrMicrosoft = "mr.microsoft";
/// <summary>
/// Microsoft analyzer for Norwegian (Bokmål).
/// </summary>
public const string NbMicrosoft = "nb.microsoft";
/// <summary>
/// Lucene analyzer for Norwegian.
/// </summary>
public const string NoLucene = "no.lucene";
/// <summary>
/// Lucene analyzer for Persian.
/// </summary>
public const string FaLucene = "fa.lucene";
/// <summary>
/// Microsoft analyzer for Polish.
/// </summary>
public const string PlMicrosoft = "pl.microsoft";
/// <summary>
/// Lucene analyzer for Polish.
/// </summary>
public const string PlLucene = "pl.lucene";
/// <summary>
/// Microsoft analyzer for Portuguese (Brazil).
/// </summary>
public const string PtBrMicrosoft = "pt-BR.microsoft";
/// <summary>
/// Lucene analyzer for Portuguese (Brazil).
/// </summary>
public const string PtBRLucene = "pt-BR.lucene";
/// <summary>
/// Microsoft analyzer for Portuguese (Portugal).
/// </summary>
public const string PtPtMicrosoft = "pt-PT.microsoft";
/// <summary>
/// Lucene analyzer for Portuguese (Portugal).
/// </summary>
public const string PtPTLucene = "pt-PT.lucene";
/// <summary>
/// Microsoft analyzer for Punjabi.
/// </summary>
public const string PaMicrosoft = "pa.microsoft";
/// <summary>
/// Microsoft analyzer for Romanian.
/// </summary>
public const string RoMicrosoft = "ro.microsoft";
/// <summary>
/// Lucene analyzer for Romanian.
/// </summary>
public const string RoLucene = "ro.lucene";
/// <summary>
/// Microsoft analyzer for Russian.
/// </summary>
public const string RuMicrosoft = "ru.microsoft";
/// <summary>
/// Lucene analyzer for Russian.
/// </summary>
public const string RuLucene = "ru.lucene";
/// <summary>
/// Microsoft analyzer for Serbian (Cyrillic).
/// </summary>
public const string SrCyrillicMicrosoft = "sr-cyrillic.microsoft";
/// <summary>
/// Microsoft analyzer for Serbian (Latin).
/// </summary>
public const string SrLatinMicrosoft = "sr-latin.microsoft";
/// <summary>
/// Microsoft analyzer for Slovak.
/// </summary>
public const string SkMicrosoft = "sk.microsoft";
/// <summary>
/// Microsoft analyzer for Slovenian.
/// </summary>
public const string SlMicrosoft = "sl.microsoft";
/// <summary>
/// Microsoft analyzer for Spanish.
/// </summary>
public const string EsMicrosoft = "es.microsoft";
/// <summary>
/// Lucene analyzer for Spanish.
/// </summary>
public const string EsLucene = "es.lucene";
/// <summary>
/// Microsoft analyzer for Swedish.
/// </summary>
public const string SvMicrosoft = "sv.microsoft";
/// <summary>
/// Lucene analyzer for Swedish.
/// </summary>
public const string SvLucene = "sv.lucene";
/// <summary>
/// Microsoft analyzer for Tamil.
/// </summary>
public const string TaMicrosoft = "ta.microsoft";
/// <summary>
/// Microsoft analyzer for Telugu.
/// </summary>
public const string TeMicrosoft = "te.microsoft";
/// <summary>
/// Microsoft analyzer for Thai.
/// </summary>
public const string ThMicrosoft = "th.microsoft";
/// <summary>
/// Lucene analyzer for Thai.
/// </summary>
public const string ThLucene = "th.lucene";
/// <summary>
/// Microsoft analyzer for Turkish.
/// </summary>
public const string TrMicrosoft = "tr.microsoft";
/// <summary>
/// Lucene analyzer for Turkish.
/// </summary>
public const string TrLucene = "tr.lucene";
/// <summary>
/// Microsoft analyzer for Ukranian.
/// </summary>
public const string UkMicrosoft = "uk.microsoft";
/// <summary>
/// Microsoft analyzer for Urdu.
/// </summary>
public const string UrMicrosoft = "ur.microsoft";
/// <summary>
/// Microsoft analyzer for Vietnamese.
/// </summary>
public const string ViMicrosoft = "vi.microsoft";
/// <summary>
/// Standard Lucene analyzer.
/// </summary>
public const string StandardLucene = "standard.lucene";
/// <summary>
/// Standard ASCII Folding Lucene analyzer.
/// <see href="https://docs.microsoft.com/rest/api/searchservice/Custom-analyzers-in-Azure-Search#Analyzers" />
/// </summary>
public const string StandardAsciiFoldingLucene = "standardasciifolding.lucene";
/// <summary>
/// Treats the entire content of a field as a single token. This is useful
/// for data like zip codes, ids, and some product names.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/KeywordAnalyzer.html" />
/// </summary>
public const string Keyword = "keyword";
/// <summary>
/// Flexibly separates text into terms via a regular expression pattern.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/PatternAnalyzer.html" />
/// </summary>
public const string Pattern = "pattern";
/// <summary>
/// Divides text at non-letters and converts them to lower case.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/SimpleAnalyzer.html" />
/// </summary>
public const string Simple = "simple";
/// <summary>
/// Divides text at non-letters; Applies the lowercase and stopword token filters.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/StopAnalyzer.html" />
/// </summary>
public const string Stop = "stop";
/// <summary>
/// An analyzer that uses the whitespace tokenizer.
/// <see href="http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/WhitespaceAnalyzer.html" />
/// </summary>
public const string Whitespace = "whitespace";
}
private AnalyzerName(string name)
{
Throw.IfArgumentNull(name, nameof(name));
_value = name;
}
/// <summary>
/// Defines implicit conversion from string to AnalyzerName.
/// </summary>
/// <param name="value">string to convert.</param>
/// <returns>The string as an AnalyzerName.</returns>
public static implicit operator AnalyzerName(string value) => new AnalyzerName(value);
/// <summary>
/// Defines explicit conversion from AnalyzerName to string.
/// </summary>
/// <param name="name">AnalyzerName to convert.</param>
/// <returns>The AnalyzerName as a string.</returns>
public static explicit operator string(AnalyzerName name) => name.ToString();