Package com.smartsheet.api
Enum Trace
- java.lang.Object
-
- java.lang.Enum<Trace>
-
- com.smartsheet.api.Trace
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Request
RequestBody
RequestBodySummary
RequestHeaders
Response
ResponseBody
ResponseBodySummary
ResponseHeaders
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
addReplacements(java.util.Set<Trace> traces)
static java.util.Set<Trace>
parse(java.lang.String traces)
Parse the string into a Set of Tracesstatic Trace
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
RequestHeaders
public static final Trace RequestHeaders
-
RequestBody
public static final Trace RequestBody
-
RequestBodySummary
public static final Trace RequestBodySummary
-
ResponseHeaders
public static final Trace ResponseHeaders
-
ResponseBody
public static final Trace ResponseBody
-
ResponseBodySummary
public static final Trace ResponseBodySummary
-
Request
public static final Trace Request
-
Response
public static final Trace Response
-
-
Method Detail
-
values
public static Trace[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Trace c : Trace.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Trace valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
addReplacements
public boolean addReplacements(java.util.Set<Trace> traces)
-
parse
public static java.util.Set<Trace> parse(java.lang.String traces)
Parse the string into a Set of Traces
-
-