public enum E2ETraceLevel extends java.lang.Enum<E2ETraceLevel>
Enum Constant and Description |
---|
HIGH
Functional analysis - activation of detailed functional logging and tracing in SAP J2EE and ABAP system.
|
LOW
Focus on response-time distribution analysis
(how much time is spent on each server component or where is the bottleneck).
|
MEDIUM
Focus on performance analysis; performance traces are triggered on server-side
(e.g.
|
NONE
Focus on client side analysis.
|
Modifier and Type | Method and Description |
---|---|
int |
getGrade() |
static E2ETraceLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static E2ETraceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final E2ETraceLevel LOW
public static final E2ETraceLevel MEDIUM
public static final E2ETraceLevel HIGH
public static final E2ETraceLevel NONE
public static E2ETraceLevel[] values()
for (E2ETraceLevel c : E2ETraceLevel.values()) System.out.println(c);
public static E2ETraceLevel 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 int getGrade()