Class RecordedFrame
java.lang.Object
jdk.jfr.consumer.RecordedObject
jdk.jfr.consumer.RecordedFrame
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the bytecode index for the execution point that is represented by this recorded frame.intReturns the line number for the execution point that is represented by this recorded frame, or-1if doesn't existReturns the method for the execution point that is represented by this recorded frame.getType()Returns the frame type for the execution point that is represented by this recorded frame (for example,"Interpreted","JIT compiled"or"Inlined").booleanReturnstrueif 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 Details- 
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:
 
- 
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
 
- 
getTypeReturns 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
 
- 
getMethodReturns the method for the execution point that is represented by this recorded frame.- Returns:
- the method, not null
 
 
-