public enum Tracelevel extends java.lang.Enum<Tracelevel>
Java class for tracelevel.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="tracelevel"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NONE"/> <enumeration value="ENTER"/> <enumeration value="EXIT"/> <enumeration value="PARAMETER"/> <enumeration value="MAIN_POINT"/> <enumeration value="MORE_POINT"/> <enumeration value="FLOW_PARAMETER"/> <enumeration value="FLOW"/> <enumeration value="DETAIL"/> <enumeration value="RESULT"/> <enumeration value="ALL"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL |
DETAIL |
ENTER |
EXIT |
FLOW |
FLOW_PARAMETER |
MAIN_POINT |
MORE_POINT |
NONE |
PARAMETER |
RESULT |
Modifier and Type | Method and Description |
---|---|
static Tracelevel |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static Tracelevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Tracelevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tracelevel NONE
public static final Tracelevel ENTER
public static final Tracelevel EXIT
public static final Tracelevel PARAMETER
public static final Tracelevel MAIN_POINT
public static final Tracelevel MORE_POINT
public static final Tracelevel FLOW_PARAMETER
public static final Tracelevel FLOW
public static final Tracelevel DETAIL
public static final Tracelevel RESULT
public static final Tracelevel ALL
public static Tracelevel[] values()
for (Tracelevel c : Tracelevel.values()) System.out.println(c);
public static Tracelevel 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 nullpublic java.lang.String value()
public static Tracelevel fromValue(java.lang.String v)