Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumConflictMode

  • Android
  • Objective-C
  • Swift
public class EnumConflictMode {
    public static final int CM_IGNORE = 1;
    public static final int CM_OVERWRITE = 2;
}
typedef NS_ENUM(NSInteger, EnumConflictMode)
{
    /** Ignores new settings and inherits from previous settings. */
    EnumConflictModeIgnore = 1,
    /** Overwrites and replaces with new settings. */
    EnumConflictModeOverwrite = 2
};
public enum EnumConflictMode : Int{
    /** Ignores new settings and inherits from previous settings. */
    ignore = 1
    /** Overwrites and replaces with new settings. */
    overwrite = 2
}

This page is compatible for:

Is this page helpful?

YesYes NoNo