public static enum Log.LogType extends Enum<Log.LogType>
Enum Constant and Description |
---|
ERROR
Error.
|
INFO
Info.
|
OK
OK.
|
REQUEST
Request.
|
Modifier and Type | Method and Description |
---|---|
static Log.LogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Log.LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Log.LogType REQUEST
public static final Log.LogType INFO
public static final Log.LogType ERROR
public static final Log.LogType OK
public static Log.LogType[] values()
for (Log.LogType c : Log.LogType.values()) System.out.println(c);
public static Log.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 © 2005–2015 BaseX Team. All rights reserved.