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