public enum YogaLogLevel extends java.lang.Enum<YogaLogLevel>
| Modifier and Type | Method and Description |
|---|---|
static YogaLogLevel |
fromInt(int value) |
int |
intValue() |
static YogaLogLevel |
valueOf(java.lang.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 YogaLogLevel[] values()
for (YogaLogLevel c : YogaLogLevel.values()) System.out.println(c);
public static YogaLogLevel 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 int intValue()
public static YogaLogLevel fromInt(int value)