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"
).int
Returns 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.boolean
isHidden()
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, toString
Modifier and TypeMethodDescriptionfinal boolean
getBoolean
(String name) Returns the value of a field of typeboolean
.final byte
Returns the value of a field of typebyte
.final char
Returns the value of a field of typechar
.final RecordedClass
Returns the value of a field of typeClass
.final double
Returns the value of a field of typedouble
or of another primitive type that is convertible to typedouble
by a widening conversion.final Duration
getDuration
(String name) Returns the value of a timespan field.Returns an immutable list of the fields for this object.final float
Returns the value of a field of typefloat
or of another primitive type convertible to typefloat
by a widening conversion.final Instant
getInstant
(String name) Returns the value of a timestamp field.final int
Returns the value of a field of typeint
or of another primitive type that is convertible to typeint
by a widening conversion.final long
Returns the value of a field of typelong
or of another primitive type that is convertible to typelong
by a widening conversion.final short
Returns the value of a field of typeshort
or of another primitive type convertible to typeshort
by a widening conversion.final String
Returns the value of a field of typeString
.final RecordedThread
Returns the value of a field of typeThread
.final <T> T
Returns the value of the field with the given name.boolean
Returnstrue
if a field with the given name exists,false
otherwise.final String
toString()
Returns a textual representation of this object.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
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
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(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 void
wait
(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
null
if 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
null
if 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:
true
if method is hidden,false
otherwise
-