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