public enum SentryLevel extends java.lang.Enum<SentryLevel>
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 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