public static enum Log.LogType extends java.lang.Enum<Log.LogType>
Modifier and Type | Method and Description |
---|---|
static Log.LogType |
valueOf(java.lang.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 ERROR
public static final Log.LogType INFO
public static final Log.LogType WARNING
public static Log.LogType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Log.LogType[] values()
for (Log.LogType c : Log.LogType.values()) System.out.println(c);