public static enum LoggerConfiguration.ConfigurationScope extends Enum<LoggerConfiguration.ConfigurationScope>
Enum Constant and Description |
---|
DIRECT
Only return configuration that has been applied directly.
|
INHERITED
May return configuration that has been applied to a parent logger.
|
Modifier and Type | Method and Description |
---|---|
static LoggerConfiguration.ConfigurationScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerConfiguration.ConfigurationScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerConfiguration.ConfigurationScope DIRECT
public static final LoggerConfiguration.ConfigurationScope INHERITED
public static LoggerConfiguration.ConfigurationScope[] values()
for (LoggerConfiguration.ConfigurationScope c : LoggerConfiguration.ConfigurationScope.values()) System.out.println(c);
public static LoggerConfiguration.ConfigurationScope 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