public enum LogEventType extends Enum<LogEventType>
| Enum Constant and Description |
|---|
BUSINESS_EVENT
business process event
|
PROGRESS
IPC - progress
|
STATE
IPC - state
|
SYSTEM_LOG
classic logging for applications
|
| Modifier and Type | Method and Description |
|---|---|
static LogEventType |
findByName(String name) |
static LogEventType |
findByURI(String uri) |
static Set<LogEventType> |
getAll() |
static LogEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogEventType SYSTEM_LOG
public static final LogEventType PROGRESS
public static final LogEventType STATE
public static final LogEventType BUSINESS_EVENT
public static LogEventType[] values()
for (LogEventType c : LogEventType.values()) System.out.println(c);
public static LogEventType 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 Set<LogEventType> getAll()
public static LogEventType findByURI(String uri)
public static LogEventType findByName(String name)
Copyright © 2020. All rights reserved.