public static enum TaskLogEntry.LogType extends Enum<TaskLogEntry.LogType>
Modifier and Type | Method and Description |
---|---|
static TaskLogEntry.LogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskLogEntry.LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskLogEntry.LogType TRACE
public static final TaskLogEntry.LogType NORMAL
public static final TaskLogEntry.LogType SUCCESS
public static final TaskLogEntry.LogType WARN
public static final TaskLogEntry.LogType ERROR
public static TaskLogEntry.LogType[] values()
for (TaskLogEntry.LogType c : TaskLogEntry.LogType.values()) System.out.println(c);
public static TaskLogEntry.LogType 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 © 2018. All rights reserved.