Trait

org.scaladebugger.api.profiles.traits.info

ClassLoaderInfoProfile

Related Doc: package info

Permalink

trait ClassLoaderInfoProfile extends ObjectInfoProfile with CommonInfoProfile

Represents the interface for "class loader"-based interaction.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClassLoaderInfoProfile
  2. ObjectInfoProfile
  3. ValueInfoProfile
  4. CommonInfoProfile
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def definedClasses: Seq[ReferenceTypeInfoProfile]

    Permalink

    Retrieves all loaded classes defined by this class loader.

    Retrieves all loaded classes defined by this class loader.

    returns

    The collection of reference types for the loaded classes

  2. abstract def fieldOption(name: String): Option[FieldVariableInfoProfile]

    Permalink

    Returns the object's field with the specified name.

    Returns the object's field with the specified name.

    name

    The name of the field

    returns

    Some profile wrapping the field, or None if doesn't exist

    Definition Classes
    ObjectInfoProfile
  3. abstract def fields: Seq[FieldVariableInfoProfile]

    Permalink

    Returns all visible fields contained in this object.

    Returns all visible fields contained in this object.

    returns

    The profiles wrapping the visible fields in this object

    Definition Classes
    ObjectInfoProfile
  4. abstract def indexedFieldOption(name: String): Option[FieldVariableInfoProfile]

    Permalink

    Returns the object's field with the specified name with offset index information.

    Returns the object's field with the specified name with offset index information.

    name

    The name of the field

    returns

    Some profile wrapping the field, or None if doesn't exist

    Definition Classes
    ObjectInfoProfile
  5. abstract def indexedFields: Seq[FieldVariableInfoProfile]

    Permalink

    Returns all visible fields contained in this object with offset index.

    Returns all visible fields contained in this object with offset index.

    returns

    The profiles wrapping the visible fields in this object

    Definition Classes
    ObjectInfoProfile
  6. abstract def invoke(thread: ThreadInfoProfile, method: MethodInfoProfile, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

    Permalink

    Invokes the object's method.

    Invokes the object's method.

    thread

    The thread within which to invoke the method

    method

    The method of the object to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    The resulting value of the invocation

    Definition Classes
    ObjectInfoProfile
  7. abstract def isArray: Boolean

    Permalink

    Returns whether or not this value represents an array.

    Returns whether or not this value represents an array.

    returns

    True if an array, otherwise false

    Definition Classes
    ValueInfoProfile
  8. abstract def isClassLoader: Boolean

    Permalink

    Returns whether or not this value represents a class loader.

    Returns whether or not this value represents a class loader.

    returns

    True if a class loader, otherwise false

    Definition Classes
    ValueInfoProfile
  9. abstract def isClassObject: Boolean

    Permalink

    Returns whether or not this value represents a class object.

    Returns whether or not this value represents a class object.

    returns

    True if a class object, otherwise false

    Definition Classes
    ValueInfoProfile
  10. abstract def isNull: Boolean

    Permalink

    Returns whether or not this value is null.

    Returns whether or not this value is null.

    returns

    True if null, otherwise false

    Definition Classes
    ValueInfoProfile
  11. abstract def isObject: Boolean

    Permalink

    Returns whether or not this value represents an object.

    Returns whether or not this value represents an object.

    returns

    True if an object, otherwise false

    Definition Classes
    ValueInfoProfile
  12. abstract def isPrimitive: Boolean

    Permalink

    Returns whether or not this value represents a primitive.

    Returns whether or not this value represents a primitive.

    returns

    True if a primitive, otherwise false

    Definition Classes
    ValueInfoProfile
  13. abstract def isString: Boolean

    Permalink

    Returns whether or not this value represents a string.

    Returns whether or not this value represents a string.

    returns

    True if a string, otherwise false

    Definition Classes
    ValueInfoProfile
  14. abstract def isThread: Boolean

    Permalink

    Returns whether or not this value represents a thread.

    Returns whether or not this value represents a thread.

    returns

    True if a thread, otherwise false

    Definition Classes
    ValueInfoProfile
  15. abstract def isThreadGroup: Boolean

    Permalink

    Returns whether or not this value represents a thread group.

    Returns whether or not this value represents a thread group.

    returns

    True if a thread group, otherwise false

    Definition Classes
    ValueInfoProfile
  16. abstract def isVoid: Boolean

    Permalink

    Returns whether or not this value is void.

    Returns whether or not this value is void.

    returns

    True if void, otherwise false

    Definition Classes
    ValueInfoProfile
  17. abstract def methodOption(name: String, parameterTypeNames: String*): Option[MethodInfoProfile]

    Permalink

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

    The fully-qualified type names of the parameters of the method to find

    returns

    Some profile wrapping the method, otherwise None if doesn't exist

    Definition Classes
    ObjectInfoProfile
  18. abstract def methods: Seq[MethodInfoProfile]

    Permalink

    Returns all visible methods contained in this object.

    Returns all visible methods contained in this object.

    returns

    The profiles wrapping the visible methods in this object

    Definition Classes
    ObjectInfoProfile
  19. abstract def referenceType: ReferenceTypeInfoProfile

    Permalink

    Returns the reference type information for this object.

    Returns the reference type information for this object.

    returns

    The reference type information

    Definition Classes
    ObjectInfoProfile
    Note

    Returns the specific type of this object, not any interface or superclass that it inherits. So, val x: AnyRef = "a string" would yield the reference type for String, not AnyRef.

  20. abstract def scalaVirtualMachine: ScalaVirtualMachine

    Permalink

    Returns the Scala virtual machine containing this instance.

    Returns the Scala virtual machine containing this instance.

    returns

    The Scala virtual machine instance

    Definition Classes
    CommonInfoProfile
  21. abstract def toArrayInfo: ArrayInfoProfile

    Permalink

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

    The array profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  22. abstract def toClassLoaderInfo: ClassLoaderInfoProfile

    Permalink

    Returns the value as a class loader (profile).

    Returns the value as a class loader (profile).

    returns

    The class loader profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  23. abstract def toClassObjectInfo: ClassObjectInfoProfile

    Permalink

    Returns the value as a class object (profile).

    Returns the value as a class object (profile).

    returns

    The class object profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  24. abstract def toJdiInstance: ClassLoaderReference

    Permalink

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    ClassLoaderInfoProfileObjectInfoProfileValueInfoProfileCommonInfoProfile
  25. abstract def toLocalValue: Any

    Permalink

    Returns the value as a value local to this JVM.

    Returns the value as a value local to this JVM.

    returns

    The value as a local instance

    Definition Classes
    ValueInfoProfile
  26. abstract def toObjectInfo: ObjectInfoProfile

    Permalink

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

    The object profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  27. abstract def toPrimitiveInfo: PrimitiveInfoProfile

    Permalink

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

    The primitive profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  28. abstract def toStringInfo: StringInfoProfile

    Permalink

    Returns the value as an string (profile).

    Returns the value as an string (profile).

    returns

    The string profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  29. abstract def toThreadGroupInfo: ThreadGroupInfoProfile

    Permalink

    Returns the value as a thread group (profile).

    Returns the value as a thread group (profile).

    returns

    The thread group profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  30. abstract def toThreadInfo: ThreadInfoProfile

    Permalink

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

    The thread profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  31. abstract def typeInfo: ReferenceTypeInfoProfile

    Permalink

    Returns the type information for the object.

    Returns the type information for the object.

    returns

    The profile containing type information

    Definition Classes
    ObjectInfoProfileValueInfoProfile
  32. abstract def uniqueId: Long

    Permalink

    Represents the unique id of this object.

    Represents the unique id of this object.

    returns

    The unique id as a long

    Definition Classes
    ObjectInfoProfile
  33. abstract def visibleClasses: Seq[ReferenceTypeInfoProfile]

    Permalink

    Retrieves all classes for which this class loader served as the initiating loader.

    Retrieves all classes for which this class loader served as the initiating loader.

    returns

    The collection of reference types for the initiated classes

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def field(name: String): FieldVariableInfoProfile

    Permalink

    Returns the object's field with the specified name.

    Returns the object's field with the specified name.

    name

    The name of the field

    returns

    The profile wrapping the field

    Definition Classes
    ObjectInfoProfile
    Annotations
    @throws( ... )
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. def indexedField(name: String): FieldVariableInfoProfile

    Permalink

    Returns the object's field with the specified name with offset index information.

    Returns the object's field with the specified name with offset index information.

    name

    The name of the field

    returns

    The profile wrapping the field

    Definition Classes
    ObjectInfoProfile
    Annotations
    @throws( ... )
  13. def invoke(thread: ThreadInfoProfile, methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

    Permalink

    Invokes the object's method with matching name and arguments.

    Invokes the object's method with matching name and arguments.

    thread

    The thread within which to invoke the method

    methodName

    The name of the method to invoke

    parameterTypeNames

    The names of the parameter types of the method to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    The resulting value of the invocation

    Definition Classes
    ObjectInfoProfile
    Annotations
    @throws( ... )
    Exceptions thrown

    AssertionError When the parameter type and argument counts are not equivalent

  14. def invoke(thread: ThreadInfoProfile, methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

    Permalink

    Invokes the object's method with matching name and arguments.

    Invokes the object's method with matching name and arguments.

    thread

    The thread within which to invoke the method

    methodName

    The name of the method to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    The resulting value of the invocation

    Definition Classes
    ObjectInfoProfile
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def method(name: String, parameterTypeNames: String*): MethodInfoProfile

    Permalink

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

    The fully-qualified type names of the parameters of the method to find

    returns

    The profile wrapping the method

    Definition Classes
    ObjectInfoProfile
    Annotations
    @throws( ... )
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toPrettyString: String

    Permalink

    Returns a string presenting a better human-readable description of the JDI instance.

    Returns a string presenting a better human-readable description of the JDI instance.

    returns

    The human-readable description

    Definition Classes
    ObjectInfoProfileValueInfoProfileCommonInfoProfile
  22. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  23. def tryField(name: String): Try[FieldVariableInfoProfile]

    Permalink

    Returns the object's field with the specified name.

    Returns the object's field with the specified name.

    name

    The name of the field

    returns

    Success containing the profile wrapping the field, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  24. def tryFields: Try[Seq[FieldVariableInfoProfile]]

    Permalink

    Returns all visible fields contained in this object.

    Returns all visible fields contained in this object.

    returns

    Success containing the profiles wrapping the visible fields in this object, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  25. def tryIndexedField(name: String): Try[FieldVariableInfoProfile]

    Permalink

    Returns the object's field with the specified name with offset index information.

    Returns the object's field with the specified name with offset index information.

    name

    The name of the field

    returns

    Success containing the profile wrapping the field, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  26. def tryIndexedFields: Try[Seq[FieldVariableInfoProfile]]

    Permalink

    Returns all visible fields contained in this object with offset index.

    Returns all visible fields contained in this object with offset index.

    returns

    Success containing the profiles wrapping the visible fields in this object, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  27. def tryInvoke(thread: ThreadInfoProfile, method: MethodInfoProfile, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

    Permalink

    Invokes the object's method.

    Invokes the object's method.

    thread

    The thread within which to invoke the method

    method

    The method of the object to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    Success containing the resulting value of the invocation, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  28. def tryInvoke(thread: ThreadInfoProfile, methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

    Permalink

    Invokes the object's method with matching name and arguments.

    Invokes the object's method with matching name and arguments.

    thread

    The thread within which to invoke the method

    methodName

    The name of the method to invoke

    parameterTypeNames

    The names of the parameter types of the method to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    Success containing the resulting value of the invocation, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  29. def tryInvoke(thread: ThreadInfoProfile, methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

    Permalink

    Invokes the object's method with matching name and arguments.

    Invokes the object's method with matching name and arguments.

    thread

    The thread within which to invoke the method

    methodName

    The name of the method to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    Success containing the resulting value of the invocation, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  30. def tryMethod(name: String, parameterTypeNames: String*): Try[MethodInfoProfile]

    Permalink

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

    The fully-qualified type names of the parameters of the method to find

    returns

    Success containing the profile wrapping the method, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  31. def tryMethods: Try[Seq[MethodInfoProfile]]

    Permalink

    Returns all visible methods contained in this object.

    Returns all visible methods contained in this object.

    returns

    Success containing the profiles wrapping the visible methods in this object, otherwise a failure

    Definition Classes
    ObjectInfoProfile
  32. def tryToArrayInfo: Try[ArrayInfoProfile]

    Permalink

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

    Success containing the array profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  33. def tryToClassLoaderInfo: Try[ClassLoaderInfoProfile]

    Permalink

    Returns the value as a class loader (profile).

    Returns the value as a class loader (profile).

    returns

    Success containing the class loader profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  34. def tryToClassObjectInfo: Try[ClassObjectInfoProfile]

    Permalink

    Returns the value as a class object (profile).

    Returns the value as a class object (profile).

    returns

    Success containing the class object profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  35. def tryToLocalValue: Try[Any]

    Permalink

    Returns the value as a value local to this JVM.

    Returns the value as a value local to this JVM.

    returns

    Success containing the value as a local instance, otherwise a failure

    Definition Classes
    ValueInfoProfile
  36. def tryToObjectInfo: Try[ObjectInfoProfile]

    Permalink

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

    Success containing the object profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  37. def tryToPrimitiveInfo: Try[PrimitiveInfoProfile]

    Permalink

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

    Success containing the primitive profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  38. def tryToStringInfo: Try[StringInfoProfile]

    Permalink

    Returns the value as a string (profile).

    Returns the value as a string (profile).

    returns

    Success containing the string profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  39. def tryToThreadGroupInfo: Try[ThreadGroupInfoProfile]

    Permalink

    Returns the value as a thread group (profile).

    Returns the value as a thread group (profile).

    returns

    Success containing the thread group profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  40. def tryToThreadInfo: Try[ThreadInfoProfile]

    Permalink

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

    Success containing the thread profile wrapping this value, otherwise a failure

    Definition Classes
    ValueInfoProfile
  41. def tryTypeInfo: Try[TypeInfoProfile]

    Permalink

    Returns the type information for the value.

    Returns the type information for the value.

    returns

    Success containing the profile containing type information, otherwise a failure

    Definition Classes
    ValueInfoProfile
  42. def uniqueIdHexString: String

    Permalink

    Represents the unique id of this object in hex form.

    Represents the unique id of this object in hex form. There is no 0x prepended to the value.

    returns

    The raw hex string

    Definition Classes
    ObjectInfoProfile
  43. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ObjectInfoProfile

Inherited from ValueInfoProfile

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped