public static enum OperationLog.LoggingLevel extends Enum<OperationLog.LoggingLevel>
| Enum Constant and Description |
|---|
EXECUTION |
NONE |
PERFORMANCE |
UNKNOWN |
VERBOSE |
| Modifier and Type | Method and Description |
|---|---|
static OperationLog.LoggingLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationLog.LoggingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationLog.LoggingLevel NONE
public static final OperationLog.LoggingLevel EXECUTION
public static final OperationLog.LoggingLevel PERFORMANCE
public static final OperationLog.LoggingLevel VERBOSE
public static final OperationLog.LoggingLevel UNKNOWN
public static OperationLog.LoggingLevel[] values()
for (OperationLog.LoggingLevel c : OperationLog.LoggingLevel.values()) System.out.println(c);
public static OperationLog.LoggingLevel 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 © 2019 The Apache Software Foundation. All Rights Reserved.