public static enum LoggingEmitter.Level extends Enum<LoggingEmitter.Level>
| Modifier and Type | Method and Description | 
|---|---|
static LoggingEmitter.Level | 
toLevel(String name)  | 
static LoggingEmitter.Level | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LoggingEmitter.Level[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LoggingEmitter.Level TRACE
public static final LoggingEmitter.Level DEBUG
public static final LoggingEmitter.Level INFO
public static final LoggingEmitter.Level WARN
public static final LoggingEmitter.Level ERROR
public static LoggingEmitter.Level[] values()
for (LoggingEmitter.Level c : LoggingEmitter.Level.values()) System.out.println(c);
public static LoggingEmitter.Level valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static LoggingEmitter.Level toLevel(String name)
Copyright © 2011–2018. All rights reserved.