public enum LogCategoryLevel extends Enum<LogCategoryLevel>
Java class for LogCategoryLevel.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LogCategoryLevel">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="None"/>
<enumeration value="Internal"/>
<enumeration value="Finest"/>
<enumeration value="Finer"/>
<enumeration value="Fine"/>
<enumeration value="Debug"/>
<enumeration value="Info"/>
<enumeration value="Warn"/>
<enumeration value="Error"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
FINE |
FINER |
FINEST |
INFO |
INTERNAL |
NONE |
WARN |
| Modifier and Type | Method and Description |
|---|---|
static LogCategoryLevel |
fromValue(String v) |
String |
value() |
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 INTERNAL
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 value()
public static LogCategoryLevel fromValue(String v)
Copyright © 2016. All rights reserved.