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