public static enum ApiLoggingConfiguration.Level extends Enum<ApiLoggingConfiguration.Level>
ApiLoggingConfiguration.Builder.| Enum Constant and Description |
|---|
DEBUG
To log with logging level 'DEBUG'.
|
ERROR
To log with logging level 'Error'.
|
INFO
To log with logging level 'INFO'.
|
TRACE
To log with logging level 'TRACE'.
|
WARN
To log with logging level 'WARN'.
|
| Modifier and Type | Method and Description |
|---|---|
static ApiLoggingConfiguration.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiLoggingConfiguration.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiLoggingConfiguration.Level INFO
public static final ApiLoggingConfiguration.Level ERROR
public static final ApiLoggingConfiguration.Level WARN
public static final ApiLoggingConfiguration.Level DEBUG
public static final ApiLoggingConfiguration.Level TRACE
public static ApiLoggingConfiguration.Level[] values()
for (ApiLoggingConfiguration.Level c : ApiLoggingConfiguration.Level.values()) System.out.println(c);
public static ApiLoggingConfiguration.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 © 2023. All rights reserved.