Package org.openjdk.jmc.common
Interface IMCClassLoader
-
- All Known Implementing Classes:
MCClassLoader
,StructTypes.JfrJavaClassLoader
public interface IMCClassLoader
Representation of a named classloader.Note that there is no identity in a Java classloader other than the actual classloader object. In Flight Recordings the object identity is not included which means that there is no way to uniquely identify, and perform equality checks on, IMCClassLoader instances created from Flight Recordings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of the classloader.IMCType
getType()
Returns the type of the classloader.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the classloader.- Returns:
- the classloader name
-
getType
IMCType getType()
Returns the type of the classloader.- Returns:
- the classloader type
-
-