public static enum Log.Category extends Enum<Log.Category>
| Modifier and Type | Method and Description |
|---|---|
static Log.Category |
valueOf(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(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 nullCopyright © 2009–2021. All rights reserved.