Package com.google.cloud.bigquery
Class JobStatistics.ScriptStatistics
- java.lang.Object
-
- com.google.cloud.bigquery.JobStatistics.ScriptStatistics
-
- Enclosing class:
- JobStatistics
public static class JobStatistics.ScriptStatistics extends Object
A Google BigQuery Script statistics.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobStatistics.ScriptStatistics.ScriptStackFrame
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getEvaluationKind()
Returns child job was a statement or expressionList<JobStatistics.ScriptStatistics.ScriptStackFrame>
getStackFrames()
Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getEvaluationKind
public String getEvaluationKind()
Returns child job was a statement or expression
-
getStackFrames
public List<JobStatistics.ScriptStatistics.ScriptStackFrame> getStackFrames()
Stack trace showing the line/column/procedure name of each frame on the stack at the point where the current evaluation happened. The leaf frame is first, the primary script is last. Never empty.
-
-