public enum SentryLevel extends java.lang.Enum<SentryLevel>
Enum Constant and Description |
---|
DEBUG |
ERROR |
FATAL |
INFO |
LOG
LOG is used as a level in breadcrumbs from console.log in JS
|
WARNING |
Modifier and Type | Method and Description |
---|---|
static SentryLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SentryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SentryLevel LOG
public static final SentryLevel DEBUG
public static final SentryLevel INFO
public static final SentryLevel WARNING
public static final SentryLevel ERROR
public static final SentryLevel FATAL
public static SentryLevel[] values()
for (SentryLevel c : SentryLevel.values()) System.out.println(c);
public static SentryLevel 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 null