File tree Expand file tree Collapse file tree 12 files changed +147
-8
lines changed Expand file tree Collapse file tree 12 files changed +147
-8
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ needAutoGenerateSidebar: true
1414
1515* Namespace:* com.dynamsoft.dcp
1616
17- * Assembly:* DynamsoftCodeParser .aar
17+ * Assembly:* DynamsoftCaptureVisionBundle .aar
1818
1919``` java
2020class CodeParserModule
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The `CodeParser` class enable users to configure the code parser settings or par
1414
1515* Namespace:* com.dynamsoft.dcp
1616
17- * Assembly:* DynamsoftCodeParser .aar
17+ * Assembly:* DynamsoftCaptureVisionBundle .aar
1818
1919``` java
2020class CodeParser
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default-layout
3+ title : MappingStatus - Dynamsoft Code Parser Enumerations
4+ description : The enumeration MappingStatus of Dynamsoft Code Parser represents the outcome of a mapping operation on a field.
5+ keywords : Mapping status
6+ needGenerateH3Content : true
7+ needAutoGenerateSidebar : true
8+ noTitleIndex : true
9+ breadcrumbText : MappingStatus
10+ ---
11+
12+ # Enumeration MappingStatus
13+
14+ ` MappingStatus ` represents the outcome of a mapping operation on a field.
15+
16+ ``` java
17+ @Retention (RetentionPolicy . CLASS )
18+ public @interface EnumMappingStatus {
19+ /* * The field has no mapping specified. */
20+ public static final int MS_NONE = 0 ;
21+ /* * Find a mapping for the field value. */
22+ public static final int MS_SUCCEEDED = 1 ;
23+ /* * Failed to find a mapping for the field value. */
24+ public static final int MS_FAILED = 2 ;
25+ }
26+ ```
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default-layout
3+ title : ValidationStatus - Dynamsoft Code Parser Enumerations
4+ description : The enumeration ValidationStatus of Dynamsoft Code Parser describes the outcome of a validation process on a field.
5+ keywords : Validation status
6+ needGenerateH3Content : true
7+ needAutoGenerateSidebar : true
8+ noTitleIndex : true
9+ breadcrumbText : ValidationStatus
10+ ---
11+
12+ # Enumeration ValidationStatus
13+
14+ ` ValidationStatus ` describes the outcome of a validation process on a field.
15+
16+ ``` java
17+ @Retention (RetentionPolicy . CLASS )
18+ public @interface EnumValidationStatus
19+ {
20+ /* * The field has no validation specified. */
21+ public static final int VS_NONE = 0 ;
22+ /* * The validation for the field has been succeeded. */
23+ public static final int VS_SUCCEEDED = 1 ;
24+ /* * The validation for the field has been failed. */
25+ public static final int VS_FAILED = 2 ;
26+ }
27+ ```
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ needAutoGenerateSidebar: true
1414
1515* Namespace:* com.dynamsoft.dcp
1616
17- * Assembly:* DynamsoftCodeParser .aar
17+ * Assembly:* DynamsoftCaptureVisionBundle .aar
1818
1919``` java
2020class ParsedResultItem extends CapturedResultItem
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ needAutoGenerateSidebar: true
1515
1616* Namespace:* com.dynamsoft.dcp
1717
18- * Assembly:* DynamsoftCodeParser .aar
18+ * Assembly:* DynamsoftCaptureVisionBundle .aar
1919
2020``` java
2121class ParsedResult
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ needAutoGenerateSidebar: true
1212
1313## Definition
1414
15- * Assembly:* DynamsoftCodeParser .xcframework
15+ * Assembly:* DynamsoftCaptureVisionBundle .xcframework
1616
1717<div class =" sample-code-prefix " ></div >
1818> - Objective-C
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ The `DSCodeParser` class enable users to configure the code parser settings or p
1212
1313## Definition
1414
15- * Assembly:* DynamsoftCodeParser .xcframework
15+ * Assembly:* DynamsoftCaptureVisionBundle .xcframework
1616
1717<div class =" sample-code-prefix " ></div >
1818> - Objective-C
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default-layout
3+ title : MappingStatus - Dynamsoft Code Parser Enumerations
4+ description : The enumeration MappingStatus of Dynamsoft Code Parser represents the outcome of a mapping operation on a field.
5+ keywords : Mapping status
6+ needGenerateH3Content : true
7+ needAutoGenerateSidebar : true
8+ noTitleIndex : true
9+ breadcrumbText : MappingStatus
10+ ---
11+
12+ # Enumeration MappingStatus
13+
14+ ` MappingStatus ` represents the outcome of a mapping operation on a field.
15+
16+ <div class =" sample-code-prefix template2 " ></div >
17+ > - Objective-C
18+ > - Swift
19+ >
20+ >
21+ ``` objc
22+ typedef NS_ENUM (NSInteger, DSMappingStatus)
23+ {
24+ /** The field has no mapping specified. * /
25+ DSMappingStatusNotSpecified = 0,
26+ /** Find a mapping for the field value. * /
27+ DSMappingStatusSucceeded = 1,
28+ /** Failed to find a mapping for the field value. * /
29+ DSMappingStatusFailed = 2
30+ };
31+ ```
32+ >
33+ ```swift
34+ public enum MappingStatus : Int
35+ {
36+ /** The field has no mapping specified. */
37+ none = 0
38+ /** Find a mapping for the field value. */
39+ succeeded = 1
40+ /** Failed to find a mapping for the field value. */
41+ failed = 2
42+ }
43+ ```
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default-layout
3+ title : ValidationStatus - Dynamsoft Code Parser Enumerations
4+ description : The enumeration ValidationStatus of Dynamsoft Code Parser describes the outcome of a validation process on a field.
5+ keywords : Validation status
6+ needGenerateH3Content : true
7+ needAutoGenerateSidebar : true
8+ noTitleIndex : true
9+ breadcrumbText : ValidationStatus
10+ ---
11+
12+ # Enumeration ValidationStatus
13+
14+ ` ValidationStatus ` describes the outcome of a validation process on a field.
15+
16+ <div class =" sample-code-prefix template2 " ></div >
17+ > - Objective-C
18+ > - Swift
19+ >
20+ >
21+ ``` objc
22+ typedef NS_ENUM (NSInteger, DSValidationStatus)
23+ {
24+ /** The field has no validation specified. * /
25+ DSValidationStatusNone = 0,
26+ /** The validation for the field has been succeeded. * /
27+ DSValidationStatusSucceeded = 1,
28+ /** The validation for the field has been failed. * /
29+ DSValidationStatusFailed = 2
30+ };
31+ ```
32+ >
33+ ```swift
34+ public enum ValidationStatus : Int
35+ {
36+ /** The field has no validation specified. */
37+ none = 0
38+ /** The validation for the field has been succeeded. */
39+ succeeded = 1
40+ /** The validation for the field has been failed. */
41+ failed = 2
42+ }
43+ ```
You can’t perform that action at this time.
0 commit comments