Documentation
Table of contents

Enumeration MappingStatus

MappingStatus represents the outcome of a mapping operation on a field.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
enum EnumMappingStatus {
    /** 
     * Indicates that no mapping operation has been initiated.
     */
    MS_NONE = 0,
    /** 
     * Indicates that the mapping operation was successfully completed.
     */
    MS_SUCCEEDED = 1,
    /** 
     * Indicates that the mapping operation failed to complete.
     */
    MS_FAILED = 2
}
@Retention(RetentionPolicy.CLASS)
public @interface EnumMappingStatus {
   /** The field has no mapping specified. */
   public static final int MS_NONE = 0;
   /** Find a mapping for the field value. */
   public static final int MS_SUCCEEDED = 1;
   /** Failed to find a mapping for the field value. */
   public static final int MS_FAILED = 2;
}
typedef NS_ENUM(NSInteger, DSMappingStatus)
{
   /** The field has no mapping specified. */
   DSMappingStatusNotSpecified = 0,
   /** Find a mapping for the field value. */
   DSMappingStatusSucceeded = 1,
   /** Failed to find a mapping for the field value. */
   DSMappingStatusFailed = 2
};
public enum MappingStatus : Int
{
   /** The field has no mapping specified. */
   none = 0
   /** Find a mapping for the field value. */
   succeeded = 1
   /** Failed to find a mapping for the field value. */
   failed = 2
}
typedef enum MappingStatus
{
   /** The field has no mapping specified. */
   MS_NONE,
   /** Find a mapping for the field value. */
   MS_SUCCEEDED,
   /** Failed to find a mapping for the field value. */
   MS_FAILED
} MappingStatus;

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version (2.2.20)
    • Version 2.x
      • Version 2.2.10
      • Version 2.2.0
      • Version 2.0.30
      • Version 2.0.20
      • Version 2.0.10
      • Version 2.0.0
    Change +
    © 2003–2024 Dynamsoft. All rights reserved.
    Privacy Statement / Site Map / Home / Purchase / Support