public enum XMLElement extends Enum<XMLElement>
| Enum Constant and Description |
|---|
DATE |
LEVEL |
LOGGER_NAME |
LOGICAL_CONTEXT |
MESSAGE |
MILLISECONDS |
PARAMETERS |
STACK_TRACE |
THREAD |
| Modifier and Type | Method and Description |
|---|---|
static XMLElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLElement DATE
public static final XMLElement MILLISECONDS
public static final XMLElement LOGGER_NAME
public static final XMLElement LEVEL
public static final XMLElement MESSAGE
public static final XMLElement THREAD
public static final XMLElement LOGICAL_CONTEXT
public static final XMLElement PARAMETERS
public static final XMLElement STACK_TRACE
public static XMLElement[] values()
for (XMLElement c : XMLElement.values()) System.out.println(c);
public static XMLElement 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. All rights reserved.