public enum Logging extends Enum<Logging>
Java class for Logging.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Logging">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TRACE"/>
<enumeration value="DEBUG"/>
<enumeration value="INFO"/>
<enumeration value="WARN"/>
<enumeration value="ERROR"/>
<enumeration value="FATAL"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
FATAL |
INFO |
TRACE |
WARN |
| Modifier and Type | Method and Description |
|---|---|
static Logging |
fromValue(String v) |
String |
value() |
static Logging |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logging[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logging TRACE
public static final Logging DEBUG
public static final Logging INFO
public static final Logging WARN
public static final Logging ERROR
public static final Logging FATAL
public static Logging[] values()
for (Logging c : Logging.values()) System.out.println(c);
public static Logging 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 nullpublic String value()
Copyright © 2021. All rights reserved.