public enum ApplicationLogType extends Enum<ApplicationLogType>
| Modifier and Type | Method and Description |
|---|---|
static ApplicationLogType |
from(String s) |
String |
getValue() |
String |
toString() |
static ApplicationLogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationLogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationLogType ERR
STDERRpublic static final ApplicationLogType OUT
STDOUTpublic static ApplicationLogType[] values()
for (ApplicationLogType c : ApplicationLogType.values()) System.out.println(c);
public static ApplicationLogType 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 static ApplicationLogType from(String s)
public String getValue()
public String toString()
toString in class Enum<ApplicationLogType>Copyright © 2026. All rights reserved.