org.scaladebugger.api.profiles.pure.info

PureClassObjectInfoProfile

class PureClassObjectInfoProfile extends PureObjectInfoProfile with ClassObjectInfoProfile

Represents a pure implementation of a class object profile that adds no custom logic on top of the standard JDI.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PureClassObjectInfoProfile
  2. ClassObjectInfoProfile
  3. PureObjectInfoProfile
  4. ObjectInfoProfile
  5. PureValueInfoProfile
  6. ValueInfoProfile
  7. CommonInfoProfile
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PureClassObjectInfoProfile(scalaVirtualMachine: ScalaVirtualMachine, _classObjectReference: ClassObjectReference)(_virtualMachine: VirtualMachine = ..., _threadReference: ThreadReference = ..., _referenceType: ReferenceType = ...)

    scalaVirtualMachine

    The high-level virtual machine containing the class object

    _classObjectReference

    The reference to the underlying JDI class object

    _virtualMachine

    The virtual machine associated with the class object

    _threadReference

    The thread associated with the class object (for method invocation)

    _referenceType

    The reference type for this class object

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val _virtualMachine: VirtualMachine

    The virtual machine associated with the class object

    The virtual machine associated with the class object

    Attributes
    protected
    Definition Classes
    PureClassObjectInfoProfilePureObjectInfoProfile
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  11. def field(name: String): VariableInfoProfile

    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( ... )
  12. def fieldOption(name: String): Option[VariableInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
  13. def fields: Seq[VariableInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
    Note

    Provides no offset index information!

  14. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  17. def indexedField(name: String): VariableInfoProfile

    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( ... )
  18. def indexedFieldOption(name: String): Option[VariableInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
  19. def indexedFields: Seq[VariableInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
  20. def invoke(methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

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

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

    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
    PureObjectInfoProfileObjectInfoProfile
  21. def invoke(method: MethodInfoProfile, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

    Invokes the object's method.

    Invokes the object's 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
    PureObjectInfoProfileObjectInfoProfile
  22. def invoke(methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

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

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

    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
  23. def isArray: Boolean

    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
    PureValueInfoProfileValueInfoProfile
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def isNull: Boolean

    Returns whether or not this value is null.

    Returns whether or not this value is null.

    returns

    True if null, otherwise false

    Definition Classes
    PureValueInfoProfileValueInfoProfile
  26. def isObject: Boolean

    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
    PureValueInfoProfileValueInfoProfile
  27. def isPrimitive: Boolean

    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
    PureValueInfoProfileValueInfoProfile
  28. def isString: Boolean

    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
    PureValueInfoProfileValueInfoProfile
  29. def isVoid: Boolean

    Returns whether or not this value is void.

    Returns whether or not this value is void.

    returns

    True if void, otherwise false

    Definition Classes
    PureValueInfoProfileValueInfoProfile
  30. def method(name: String, parameterTypeNames: String*): MethodInfoProfile

    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( ... )
  31. def methodOption(name: String, parameterTypeNames: String*): Option[MethodInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
  32. def methods: Seq[MethodInfoProfile]

    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
    PureObjectInfoProfileObjectInfoProfile
  33. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  34. def newArrayProfile(arrayReference: ArrayReference): ArrayInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  35. def newFieldProfile(field: Field, offsetIndex: Int): VariableInfoProfile

    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  36. def newFieldProfile(field: Field): VariableInfoProfile

    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  37. def newMethodProfile(method: Method): MethodInfoProfile

    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  38. def newObjectProfile(objectReference: ObjectReference): ObjectInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  39. def newPrimitiveProfile(voidValue: VoidValue): PrimitiveInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  40. def newPrimitiveProfile(primitiveValue: PrimitiveValue): PrimitiveInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  41. def newStringProfile(stringReference: StringReference): StringInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  42. def newTypeCheckerProfile(): TypeCheckerProfile

    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  43. def newTypeProfile(_type: Type): TypeInfoProfile

    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  44. def newValueProfile(value: Value): ValueInfoProfile

    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  45. final def notify(): Unit

    Definition Classes
    AnyRef
  46. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  47. def referenceType: ReferenceTypeInfoProfile

    Returns the reference type information for this object.

    Returns the reference type information for this object.

    returns

    The reference type information

    Definition Classes
    PureObjectInfoProfileObjectInfoProfile
    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.

  48. def reflectedType: ReferenceTypeInfoProfile

    Retrieves the reference type information corresponding to this class object.

    Retrieves the reference type information corresponding to this class object.

    returns

    The reference type information

    Definition Classes
    PureClassObjectInfoProfileClassObjectInfoProfile
  49. val scalaVirtualMachine: ScalaVirtualMachine

    The high-level virtual machine containing the class object

    The high-level virtual machine containing the class object

    Definition Classes
    PureClassObjectInfoProfilePureObjectInfoProfilePureValueInfoProfileCommonInfoProfile
  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  51. def toArrayInfo: ArrayInfoProfile

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

    The array profile wrapping this value

    Definition Classes
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  52. def toJdiInstance: ClassObjectReference

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    PureClassObjectInfoProfileClassObjectInfoProfilePureObjectInfoProfileObjectInfoProfilePureValueInfoProfileValueInfoProfileCommonInfoProfile
  53. def toLocalValue: Any

    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
    PureValueInfoProfileValueInfoProfile
  54. def toObjectInfo: ObjectInfoProfile

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

    The object profile wrapping this value

    Definition Classes
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  55. def toPrettyString: String

    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
  56. def toPrimitiveInfo: PrimitiveInfoProfile

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

    The primitive profile wrapping this value

    Definition Classes
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  57. def toString(): String

    Definition Classes
    AnyRef → Any
  58. def toStringInfo: StringInfoProfile

    Returns the value as a string (profile).

    Returns the value as a string (profile).

    returns

    The string profile wrapping this value

    Definition Classes
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  59. def tryField(name: String): Try[VariableInfoProfile]

    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
  60. def tryFields: Try[Seq[VariableInfoProfile]]

    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
  61. def tryIndexedField(name: String): Try[VariableInfoProfile]

    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
  62. def tryIndexedFields: Try[Seq[VariableInfoProfile]]

    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
  63. def tryInvoke(method: MethodInfoProfile, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

    Invokes the object's method.

    Invokes the object's 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
  64. def tryInvoke(methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

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

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

    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
  65. def tryInvoke(methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfoProfile]

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

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

    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
  66. def tryMethod(name: String, parameterTypeNames: String*): Try[MethodInfoProfile]

    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
  67. def tryMethods: Try[Seq[MethodInfoProfile]]

    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
  68. def tryToArrayInfo: Try[ArrayInfoProfile]

    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
  69. def tryToLocalValue: Try[Any]

    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
  70. def tryToObjectInfo: Try[ObjectInfoProfile]

    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
  71. def tryToPrimitiveInfo: Try[PrimitiveInfoProfile]

    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
  72. def tryToStringInfo: Try[StringInfoProfile]

    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
  73. def tryTypeInfo: Try[TypeInfoProfile]

    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
  74. def typeInfo: ReferenceTypeInfoProfile

    Returns the type information for the object.

    Returns the type information for the object.

    returns

    The profile containing type information

    Definition Classes
    PureObjectInfoProfileObjectInfoProfilePureValueInfoProfileValueInfoProfile
  75. def uniqueId: Long

    Represents the unique id of this object.

    Represents the unique id of this object.

    returns

    The unique id as a long

    Definition Classes
    PureObjectInfoProfileObjectInfoProfile
  76. def uniqueIdHexString: String

    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
  77. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ClassObjectInfoProfile

Inherited from PureObjectInfoProfile

Inherited from ObjectInfoProfile

Inherited from PureValueInfoProfile

Inherited from ValueInfoProfile

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped