public static enum JSONCoderOption.LogLevel extends Enum<JSONCoderOption.LogLevel>
| Modifier and Type | Method and Description |
|---|---|
abstract void |
log(org.slf4j.Logger logger,
String message,
Exception e) |
static JSONCoderOption.LogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JSONCoderOption.LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JSONCoderOption.LogLevel OFF
public static final JSONCoderOption.LogLevel DEBUG
public static final JSONCoderOption.LogLevel INFO
public static final JSONCoderOption.LogLevel WARN
public static final JSONCoderOption.LogLevel ERROR
public static JSONCoderOption.LogLevel[] values()
for (JSONCoderOption.LogLevel c : JSONCoderOption.LogLevel.values()) System.out.println(c);
public static JSONCoderOption.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 nullCopyright © 2021. All rights reserved.