public enum LogCategoryLevel extends Enum<LogCategoryLevel>
| Enum Constant and Description |
|---|
Debug
Enumeration : Debug
|
Error
Enumeration : Error
|
Fine
Enumeration : Fine
|
Finer
Enumeration : Finer
|
Finest
Enumeration : Finest
|
Info
Enumeration : Info
|
None
Enumeration : None
|
Warn
Enumeration : Warn
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LogCategoryLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogCategoryLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogCategoryLevel None
public static final LogCategoryLevel Finest
public static final LogCategoryLevel Finer
public static final LogCategoryLevel Fine
public static final LogCategoryLevel Debug
public static final LogCategoryLevel Info
public static final LogCategoryLevel Warn
public static final LogCategoryLevel Error
public static LogCategoryLevel[] values()
for (LogCategoryLevel c : LogCategoryLevel.values()) System.out.println(c);
public static LogCategoryLevel 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 String toString()
toString in class Enum<LogCategoryLevel>Copyright © 2017. All Rights Reserved.