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