public static enum PythonPr.LoggingLevel extends Enum<PythonPr.LoggingLevel>
| Enum Constant and Description |
|---|
CRITICAL
CRITICAL
|
DEBUG
DEBUG
|
ERROR
ERROR
|
INFO
INFO
|
WARNING
WARNING
|
| Modifier and Type | Method and Description |
|---|---|
static PythonPr.LoggingLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonPr.LoggingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonPr.LoggingLevel DEBUG
public static final PythonPr.LoggingLevel INFO
public static final PythonPr.LoggingLevel WARNING
public static final PythonPr.LoggingLevel ERROR
public static final PythonPr.LoggingLevel CRITICAL
public static PythonPr.LoggingLevel[] values()
for (PythonPr.LoggingLevel c : PythonPr.LoggingLevel.values()) System.out.println(c);
public static PythonPr.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 © 2021 GATE Team. All rights reserved.