public enum LogType extends Enum<LogType>
Java class for LogType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LogType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="None"/>
<enumeration value="Debugonly"/>
<enumeration value="Db"/>
<enumeration value="Profiling"/>
<enumeration value="Callout"/>
<enumeration value="Detail"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CALLOUT |
DB |
DEBUGONLY |
DETAIL |
NONE |
PROFILING |
| Modifier and Type | Method and Description |
|---|---|
static LogType |
fromValue(String v) |
String |
value() |
static LogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogType NONE
public static final LogType DEBUGONLY
public static final LogType DB
public static final LogType PROFILING
public static final LogType CALLOUT
public static final LogType DETAIL
public static LogType[] values()
for (LogType c : LogType.values()) System.out.println(c);
public static LogType 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()
Copyright © 2016. All rights reserved.