You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Known values of {@linkStringIndexTypeResponse} that the service accepts. */
590
-
exportconstenumKnownStringIndexTypeResponse{
589
+
/** Known values of {@linkStringIndexType} that the service accepts. */
590
+
exportconstenumKnownStringIndexType{
591
591
/** Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. */
592
592
TextElementsV8="TextElements_v8",
593
593
/** Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. */
* {@linkKnownStringIndexTypeResponse} can be used interchangeably with StringIndexTypeResponse,
600
+
* Defines values for StringIndexType. \
601
+
* {@linkKnownStringIndexType} can be used interchangeably with StringIndexType,
602
602
* this enum contains the known values that the service supports.
603
603
* ### Know values supported by the service
604
604
* **TextElements_v8**: Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. \
605
605
* **UnicodeCodePoint**: Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. \
606
606
* **Utf16CodeUnit**: Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript.
607
607
*/
608
-
exporttypeStringIndexTypeResponse=string;
608
+
exporttypeStringIndexType=string;
609
609
610
610
/** Known values of {@link PiiTaskParametersDomain} that the service accepts. */
/** Known values of {@link StringIndexType} that the service accepts. */
1085
-
exportconstenumKnownStringIndexType{
1086
-
/** Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. */
1087
-
TextElementsV8="TextElements_v8",
1088
-
/** Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. */
1089
-
UnicodeCodePoint="UnicodeCodePoint",
1090
-
/** Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript. */
1091
-
Utf16CodeUnit="Utf16CodeUnit"
1092
-
}
1093
-
1094
-
/**
1095
-
* Defines values for StringIndexType. \
1096
-
* {@link KnownStringIndexType} can be used interchangeably with StringIndexType,
1097
-
* this enum contains the known values that the service supports.
1098
-
* ### Know values supported by the service
1099
-
* **TextElements_v8**: Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. \
1100
-
* **UnicodeCodePoint**: Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. \
1101
-
* **Utf16CodeUnit**: Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript.
0 commit comments