Class RecordedMethod
java.lang.Object
jdk.jfr.consumer.RecordedObject
jdk.jfr.consumer.RecordedMethod
-
Method Summary
Modifier and TypeMethodDescriptionReturns the method descriptor for this method (for example,"(Ljava/lang/String;)V").intReturns the modifiers for this method.getName()Returns the name of this method, for example"toString".getType()Returns the class this method belongs to, if it belongs to a Java frame.booleanisHidden()Returns whether this method is hidden (for example, wrapper code in a lambda expression).Methods declared in class RecordedObject
getBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toStringModifier and TypeMethodDescriptionfinal booleangetBoolean(String name) Returns the value of a field of typeboolean.final byteReturns the value of a field of typebyte.final charReturns the value of a field of typechar.final RecordedClassReturns the value of a field of typeClass.final doubleReturns the value of a field of typedoubleor of another primitive type that is convertible to typedoubleby a widening conversion.final DurationgetDuration(String name) Returns the value of a timespan field.Returns an immutable list of the fields for this object.final floatReturns the value of a field of typefloator of another primitive type convertible to typefloatby a widening conversion.final InstantgetInstant(String name) Returns the value of a timestamp field.final intReturns the value of a field of typeintor of another primitive type that is convertible to typeintby a widening conversion.final longReturns the value of a field of typelongor of another primitive type that is convertible to typelongby a widening conversion.final shortReturns the value of a field of typeshortor of another primitive type convertible to typeshortby a widening conversion.final StringReturns the value of a field of typeString.final RecordedThreadReturns the value of a field of typeThread.final <T> TReturns the value of the field with the given name.booleanReturnstrueif a field with the given name exists,falseotherwise.final StringtoString()Returns a textual representation of this object.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
getType
Returns the class this method belongs to, if it belongs to a Java frame.To ensure this is a Java frame, use the
RecordedFrame.isJavaFrame()method.- Returns:
- the class, may be
nullif not a Java frame - See Also:
-
getName
Returns the name of this method, for example"toString".If this method doesn't belong to a Java frame the result is undefined.
- Returns:
- method name, or
nullif doesn't exist - See Also:
-
getDescriptor
Returns the method descriptor for this method (for example,"(Ljava/lang/String;)V").If this method doesn't belong to a Java frame then the result is undefined.
- Returns:
- method descriptor
- See Java Virtual Machine Specification:
-
4.3 Descriptors
- See Also:
-
getModifiers
public int getModifiers()Returns the modifiers for this method.If this method doesn't belong to a Java frame, then the result is undefined.
- Returns:
- the modifiers
- See Also:
-
isHidden
public boolean isHidden()Returns whether this method is hidden (for example, wrapper code in a lambda expression).- Returns:
trueif method is hidden,falseotherwise
-