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 }