public enum TraceType extends Enum<TraceType>
| Enum Constant and Description |
|---|
CONNECTION
Related to JDBC connections.
|
FETCH
Related to ResultSets.
|
QUERY
Related to query executions.
|
| Modifier and Type | Method and Description |
|---|---|
static TraceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceType CONNECTION
public static final TraceType QUERY
public static final TraceType FETCH
public static TraceType[] values()
for (TraceType c : TraceType.values()) System.out.println(c);
public static TraceType 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 nullCopyright © 2022 Pivotal Software, Inc.. All rights reserved.