- java.lang.Object
- 
- jdk.jfr.consumer.RecordedObject
- 
- jdk.jfr.consumer.RecordedFrame
 
 
- 
 public final class RecordedFrame extends RecordedObject A recorded frame in a stack trace.- Since:
- 9
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBytecodeIndex()Returns the bytecode index for the execution point that is represented by this recorded frame.intgetLineNumber()Returns the line number for the execution point that is represented by this recorded frame, or-1if doesn't existRecordedMethodgetMethod()Returns the method for the execution point that is represented by this recorded frame.StringgetType()Returns the frame type for the execution point that is represented by this recorded frame (for example,"Interpreted","JIT compiled"or"Inlined").booleanisJavaFrame()Returnstrueif this is a Java frame,falseotherwise.- 
Methods declared in class jdk.jfr.consumer.RecordedObjectgetBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
 
- 
 
- 
- 
- 
Method Detail- 
isJavaFramepublic boolean isJavaFrame() Returnstrueif this is a Java frame,falseotherwise.A Java method that has a native modifier is considered a Java frame. - Returns:
- trueif this is a Java frame,- falseotherwise
- See Also:
- Modifier.isNative(int)
 
 - 
getBytecodeIndexpublic int getBytecodeIndex() Returns the bytecode index for the execution point that is represented by this recorded frame.- Returns:
- byte code index, or -1if doesn't exist
 
 - 
getLineNumberpublic int getLineNumber() Returns the line number for the execution point that is represented by this recorded frame, or-1if doesn't exist- Returns:
- the line number, or -1if doesn't exist
 
 - 
getTypepublic String getType() Returns the frame type for the execution point that is represented by this recorded frame (for example,"Interpreted","JIT compiled"or"Inlined").- Returns:
- the frame type, or nullif doesn't exist
 
 - 
getMethodpublic RecordedMethod getMethod() Returns the method for the execution point that is represented by this recorded frame.- Returns:
- the method, not null
 
 
- 
 
-