public enum Trace extends Enum<Trace>
| Enum Constant and Description |
|---|
Request |
RequestBody |
RequestBodySummary |
RequestHeaders |
Response |
ResponseBody |
ResponseBodySummary |
ResponseHeaders |
| Modifier and Type | Method and Description |
|---|---|
boolean |
addReplacements(Set<Trace> traces) |
static Set<Trace> |
parse(String traces) |
static Trace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trace RequestHeaders
public static final Trace RequestBody
public static final Trace RequestBodySummary
public static final Trace ResponseHeaders
public static final Trace ResponseBody
public static final Trace ResponseBodySummary
public static final Trace Request
public static final Trace Response
public static Trace[] values()
for (Trace c : Trace.values()) System.out.println(c);
public static Trace 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 © 2014–2019 Smartsheet. All rights reserved.