public enum LogScopeEnum extends java.lang.Enum<LogScopeEnum>
| Enum Constant and Description | 
|---|
SCOPE_DEFAULT  | 
SCOPE_DEPENDENCY  | 
| Modifier and Type | Method and Description | 
|---|---|
static java.lang.String | 
getName(java.lang.String value)  | 
java.lang.String | 
getValue()  | 
static LogScopeEnum | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static LogScopeEnum[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LogScopeEnum SCOPE_DEFAULT
public static final LogScopeEnum SCOPE_DEPENDENCY
public static LogScopeEnum[] values()
for (LogScopeEnum c : LogScopeEnum.values()) System.out.println(c);
public static LogScopeEnum 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 nullpublic java.lang.String getValue()
public static java.lang.String getName(java.lang.String value)