java.lang.Object
jdk.jfr.consumer.RecordedObject
jdk.jfr.consumer.RecordedStackTrace
public final class RecordedStackTrace extends RecordedObject
A recorded stack trace.
- Since:
- 9
- 
Method SummaryModifier and Type Method Description List<RecordedFrame>getFrames()Returns the frames in the stack trace.booleanisTruncated()Returnstrueif the stack trace is truncated due to its size,falseotherwise.Methods declared in class jdk.jfr.consumer.RecordedObjectgetBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, objectAt, toString
- 
Method Details- 
getFramesReturns the frames in the stack trace.- Returns:
- a list of Java stack frames, not null
 
- 
isTruncatedpublic boolean isTruncated()Returnstrueif the stack trace is truncated due to its size,falseotherwise.- Returns:
- trueif the stack trace is truncated,- falseotherwise
 
 
-