@InterfaceStability.Committed @InterfaceAudience.Public public enum N1qlProfile extends Enum<N1qlProfile>
N1ql profile options
Enum Constant and Description |
---|
OFF
No profiling information is added to the query response.
|
PHASES
The query response includes a profile section with stats and details
about various phases of the query plan and execution.
|
TIMINGS
Besides the phase times, the profile section of the query response document will
include a full query plan with timing and information about the number of processed
documents at each phase.
|
Modifier and Type | Method and Description |
---|---|
static N1qlProfile |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static N1qlProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final N1qlProfile OFF
public static final N1qlProfile PHASES
public static final N1qlProfile TIMINGS
public static N1qlProfile[] values()
for (N1qlProfile c : N1qlProfile.values()) System.out.println(c);
public static N1qlProfile 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 © 2015 Couchbase, Inc.