- java.lang.Object
-
- jdk.jfr.consumer.RecordedObject
-
- jdk.jfr.consumer.RecordedClassLoader
-
public final class RecordedClassLoader extends RecordedObject
記録されたJavaクラス・ローダー。- 導入されたバージョン:
- 9
-
-
メソッドのサマリー
修飾子と型 メソッド 説明 long
getId()
クラス・ローダーの一意のIDを返します。String
getName()
クラス・ローダー(たとえば、"boot"、"platform"および"app"です)の名前を返します。RecordedClass
getType()
クラス・ローダーのクラスを返します。-
クラス jdk.jfr.consumer.RecordedObjectで宣言されたメソッド
getBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
-
-
-
-
メソッドの詳細
-
getType
public RecordedClass getType()
クラス・ローダーのクラスを返します。ブートストラップ・クラス・ローダーがJava Virtual Machine (JVM)で
null
として表される場合、null
もこのメソッドの戻り値になります。- 戻り値:
- クラス・ローダーのクラスは、
null
-
getName
public String getName()
クラス・ローダー(たとえば、"boot"、"platform"および"app"です)の名前を返します。- 戻り値:
- クラス・ローダー名は、
null
-
getId
public long getId()
クラス・ローダーの一意のIDを返します。IDがJava Virtual Machine (JVM)インスタンスの間で同じでない可能性があります。
- 戻り値:
- 一意のID
-
-