public static enum LogRecord.Level extends java.lang.Enum<LogRecord.Level>
Modifier and Type | Method and Description |
---|---|
static LogRecord.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogRecord.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogRecord.Level DEBUG
public static final LogRecord.Level INFO
public static final LogRecord.Level WARN
public static final LogRecord.Level ERROR
public static LogRecord.Level[] values()
for (LogRecord.Level c : LogRecord.Level.values()) System.out.println(c);
public static LogRecord.Level 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