public static enum LoggerFactory.LoggerFramework extends Enum<LoggerFactory.LoggerFramework>
| Enum Constant and Description |
|---|
ANDROID
ANDROID Logger.
|
LOGBACK
LOGBACK Logger.
|
SLF4J
SLF4J Logger.
|
STDOUT
STANDARD OUT Logger
|
| Modifier and Type | Method and Description |
|---|---|
static LoggerFactory.LoggerFramework |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggerFactory.LoggerFramework[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoggerFactory.LoggerFramework LOGBACK
public static final LoggerFactory.LoggerFramework SLF4J
public static final LoggerFactory.LoggerFramework ANDROID
public static final LoggerFactory.LoggerFramework STDOUT
public static LoggerFactory.LoggerFramework[] values()
for (LoggerFactory.LoggerFramework c : LoggerFactory.LoggerFramework.values()) System.out.println(c);
public static LoggerFactory.LoggerFramework 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 © 2018. All rights reserved.