public static enum ApptimizeOptions.LogLevel extends java.lang.Enum<ApptimizeOptions.LogLevel>
When used as an argument to
ApptimizeOptions.setLogLevel(com.apptimize.ApptimizeOptions.LogLevel)
,
Apptimize will log all messages of the given importance or higher
Enum Constant and Description |
---|
DEBUG |
ERROR |
INFO |
OFF
Use this to completely silence the Apptimize SDK
|
VERBOSE |
WARNING |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getTag() |
static ApptimizeOptions.LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApptimizeOptions.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApptimizeOptions.LogLevel VERBOSE
public static final ApptimizeOptions.LogLevel DEBUG
public static final ApptimizeOptions.LogLevel INFO
public static final ApptimizeOptions.LogLevel WARNING
public static final ApptimizeOptions.LogLevel ERROR
public static final ApptimizeOptions.LogLevel OFF
public static ApptimizeOptions.LogLevel[] values()
for (ApptimizeOptions.LogLevel c : ApptimizeOptions.LogLevel.values()) System.out.println(c);
public static ApptimizeOptions.LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getTag()