public static enum FLog.LogType extends java.lang.Enum<FLog.LogType>
| Modifier and Type | Method and Description |
|---|---|
static FLog.LogType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FLog.LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FLog.LogType ERROR
public static final FLog.LogType WARNING
public static final FLog.LogType DEBUG
public static final FLog.LogType INFO
public static final FLog.LogType VERBOSE
public static FLog.LogType[] values()
for (FLog.LogType c : FLog.LogType.values()) System.out.println(c);
public static FLog.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 null