EnumLogMode
- Android
- Objective-C
- Swift
public class EnumLogMode { // Don't save the log. public static final int LGM_OFF = 0; // Save the log as text. public static final int LGM_TEXT = 2; }
typedef NS_ENUM(NSInteger,EnumLogMode) { // Don't save the log. EnumLogModeOff = 0x00, // Save the log as text. EnumLogModeText = 0x02 };
public enum EnumLogMode : Int{ // Don't save the log. off = 0x00 // Save the log as text. text = 0x02 }