public static enum AbstractLoggingFilter.Level extends Enum<AbstractLoggingFilter.Level>
| Enum Constant and Description | 
|---|
DEBUG  | 
DISABLED  | 
ERROR  | 
INFO  | 
WARNING  | 
| Modifier and Type | Method and Description | 
|---|---|
static AbstractLoggingFilter.Level | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AbstractLoggingFilter.Level[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AbstractLoggingFilter.Level INFO
public static final AbstractLoggingFilter.Level WARNING
public static final AbstractLoggingFilter.Level DEBUG
public static final AbstractLoggingFilter.Level ERROR
public static final AbstractLoggingFilter.Level DISABLED
public static AbstractLoggingFilter.Level[] values()
for (AbstractLoggingFilter.Level c : AbstractLoggingFilter.Level.values()) System.out.println(c);
public static AbstractLoggingFilter.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 nullCopyright © 2020 JavaLite. All rights reserved.