Click or drag to resize

ExplanationLevel Enumeration

Represents the level of Query Explanation that is desired.

Namespace:  VDS.RDF.Query
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
[FlagsAttribute]
public enum ExplanationLevel
Members
  Member nameValueDescription
None0 Specifies No Explanations
OutputToDebug1 Specifies Explanations are output to Debug
OutputToTrace2 Specifies Explanations are output to Trace
OutputToConsoleStdOut4 Specifies Explanations are output to Console Standard Output
OutputToConsoleStdErr8 Specifies Explanations are output to Console Standard Error
OutputDefault5 Specifies Explanations are output to Debug and Console Standard Output
OutputAll15 Specifies Explanations are output to all
ShowThreadID16 Show the Thread ID of the Thread evaluating the query (useful in multi-threaded environments)
ShowDepth32 Show the Depth of the Algebra Operator
ShowOperator64 Show the Type of the Algebra Operator
ShowAction128 Show the Action being performed (makes it clear whether the explanation marks the start/end of an operation)
ShowTimings256 Shows Timings for the Query
ShowIntermediateResultCount512 Show Intermediate Result Counts at each stage of evaluation
ShowBasic224 Shows Basic Information (Depth, Operator and Action)
ShowDefault240 Shows Default Information (Thread ID, Depth, Operator and Action)
ShowAll1008 Shows All Information
AnalyseBgps1024 Shows an analysis of BGPs prior to evaluating them
AnalyseJoins2048 Shows an analysis of Joins prior to evaluating them
AnalyseNamedGraphs4096 Shows an analysis of Named Graphs used by a Graph clause prior to evaluating them
Simulate8092 Sets whether Evaluation should be simulated (means timings will not be accurate but allows you to explain queries without needing actual data to evaluate them against)
AnalyseAll7168 Shows all analysis information
Basic228 Basic Explanation Level (Console Standard Output and Basic Information)
Default245 Default Explanation Level (Default Outputs and Default Information)
Detailed1013 Detailed Explanation Level (Default Outputs and All Information)
Full8191 Full Explanation Level (All Outputs, All Information and All Analysis)
BasicSimulation8188 Basic Explanation Level with Query Evaluation simulated
DefaultSimulation8189 Default Explanation Level with Query Evaluation simulated
DetailedSimulation8189 Detailed Explanation Level with Query Evaluation simulated
FullSimulation8191 Full Explanation Level with Query Evaluation simulated
See Also