Class

org.scaladebugger.api.profiles.pure.info

PureThreadInfoProfile

Related Doc: package info

Permalink

class PureThreadInfoProfile extends PureObjectInfoProfile with ThreadInfoProfile

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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PureThreadInfoProfile
  2. ThreadInfoProfile
  3. PureObjectInfoProfile
  4. ObjectInfoProfile
  5. PureValueInfoProfile
  6. ValueInfoProfile
  7. CommonInfoProfile
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PureThreadInfoProfile(scalaVirtualMachine: ScalaVirtualMachine, infoProducer: InfoProducerProfile, _threadReference: ThreadReference)(_virtualMachine: VirtualMachine = _threadReference.virtualMachine(), _referenceType: ReferenceType = _threadReference.referenceType())

    Permalink

    scalaVirtualMachine

    The high-level virtual machine containing the thread

    infoProducer

    The producer of info-based profile instances

    _threadReference

    The reference to the underlying JDI thread

    _virtualMachine

    The virtual machine used to mirror local values on the remote JVM

    _referenceType

    The reference type for this thread

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. val _virtualMachine: VirtualMachine

    Permalink

    The virtual machine used to mirror local values on the remote JVM

    The virtual machine used to mirror local values on the remote JVM

    Attributes
    protected
    Definition Classes
    PureThreadInfoProfilePureObjectInfoProfile
  5. final def asInstanceOf[T0]: T0

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. 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( ... )
  10. 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
    PureObjectInfoProfileObjectInfoProfile
  11. 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
    PureObjectInfoProfileObjectInfoProfile
    Note

    Provides no offset index information!

  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def findVariableByIndex(frameIndex: Int, offsetIndex: Int): Option[VariableInfoProfile]

    Permalink

    Retrieves an active variable from the specified stack frame using its index and the offset of visible, local variables in the stack frame.

    Retrieves an active variable from the specified stack frame using its index and the offset of visible, local variables in the stack frame.

    frameIndex

    The index of the frame containing the variable

    offsetIndex

    The offset within the frame to find the variable

    returns

    Some variable if found, otherwise None

    Definition Classes
    ThreadInfoProfile
  14. def findVariableByName(name: String): Option[VariableInfoProfile]

    Permalink

    Retrieves an active variable within the thread's stack frames with the matching name.

    Retrieves an active variable within the thread's stack frames with the matching name.

    name

    The name of the variable to find

    returns

    Some variable if found, otherwise None

    Definition Classes
    ThreadInfoProfile
  15. def frame(index: Int): FrameInfoProfile

    Permalink

    Retrieves the profile for the specified frame in the stack.

    Retrieves the profile for the specified frame in the stack.

    index

    The index (starting with 0 being top) of the frame whose profile to retrieve

    returns

    The new frame profile instance

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  16. def frames: Seq[FrameInfoProfile]

    Permalink

    Retrieves profiles for all frames in the stack.

    Retrieves profiles for all frames in the stack.

    returns

    The collection of frame profiles

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  17. def frames(index: Int, length: Int): Seq[FrameInfoProfile]

    Permalink

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    index

    The index (starting with 0 being top) of the first frame whose profile to retrieve

    length

    The total number of frames to retrieve starting with the one at index, or -1 if all frames including and after the index should be retrieved

    returns

    The collection of frame profiles

    Definition Classes
    ThreadInfoProfile
  18. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. 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( ... )
  21. 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
    PureObjectInfoProfileObjectInfoProfile
  22. 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
    PureObjectInfoProfileObjectInfoProfile
  23. val infoProducer: InfoProducerProfile

    Permalink

    The producer of info-based profile instances

    The producer of info-based profile instances

    Attributes
    protected
    Definition Classes
    PureThreadInfoProfilePureObjectInfoProfilePureValueInfoProfile
  24. 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
    PureObjectInfoProfileObjectInfoProfile
  25. 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

  26. 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
  27. 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
    PureValueInfoProfileValueInfoProfile
  28. 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
    PureValueInfoProfileValueInfoProfile
  29. 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
    PureValueInfoProfileValueInfoProfile
  30. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  31. 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
    PureValueInfoProfileValueInfoProfile
  32. 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
    PureValueInfoProfileValueInfoProfile
  33. 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
    PureValueInfoProfileValueInfoProfile
  34. 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
    PureValueInfoProfileValueInfoProfile
  35. 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
    PureValueInfoProfileValueInfoProfile
  36. 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
    PureValueInfoProfileValueInfoProfile
  37. 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
    PureValueInfoProfileValueInfoProfile
  38. 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( ... )
  39. 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
    PureObjectInfoProfileObjectInfoProfile
  40. 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
    PureObjectInfoProfileObjectInfoProfile
  41. def name: String

    Permalink

    Represents the name of the thread.

    Represents the name of the thread.

    returns

    The thread name as a string

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  42. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  44. def newClassLoaderProfile(classLoaderReference: ClassLoaderReference): ClassLoaderInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  45. def newClassObjectProfile(classObjectReference: ClassObjectReference): ClassObjectInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  46. def newFieldProfile(field: Field, offsetIndex: Int): FieldVariableInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  47. def newFieldProfile(field: Field): FieldVariableInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureObjectInfoProfile
  48. def newFrameProfile(stackFrame: StackFrame, index: Int): FrameInfoProfile

    Permalink
    Attributes
    protected
  49. def newMethodProfile(method: Method): MethodInfoProfile

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  54. def newThreadGroupProfile(threadGroupReference: ThreadGroupReference): ThreadGroupInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureThreadInfoProfilePureValueInfoProfile
  55. def newThreadProfile(threadReference: ThreadReference): ThreadInfoProfile

    Permalink
    Attributes
    protected
    Definition Classes
    PureValueInfoProfile
  56. def newThreadStatusProfile(): ThreadStatusInfoProfile

    Permalink
    Attributes
    protected
  57. def newTypeCheckerProfile(): TypeCheckerProfile

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  62. def rawFrames(index: Int, length: Int): Seq[FrameInfoProfile]

    Permalink

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    index

    The index (starting with 0 being top) of the first frame whose profile to retrieve

    length

    The total number of frames to retrieve starting with the one at index

    returns

    The collection of frame profiles

    Attributes
    protected
    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  63. 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
    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.

  64. def resume(): Unit

    Permalink

    Resumes the thread if suspended by decrementing the pending suspension counter.

    Resumes the thread if suspended by decrementing the pending suspension counter. If the counter remains greater than zero, the thread remains suspended.

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  65. val scalaVirtualMachine: ScalaVirtualMachine

    Permalink

    The high-level virtual machine containing the thread

    The high-level virtual machine containing the thread

    Definition Classes
    PureThreadInfoProfilePureObjectInfoProfilePureValueInfoProfileCommonInfoProfile
  66. def status: ThreadStatusInfoProfile

    Permalink

    Represents the information about the thread's status.

    Represents the information about the thread's status.

    returns

    The thread's status as a profile

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  67. def suspend(): Unit

    Permalink

    Suspends the thread by incrementing the pending suspension counter.

    Suspends the thread by incrementing the pending suspension counter.

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  68. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  69. def threadGroup: ThreadGroupInfoProfile

    Permalink

    Represents the thread group containing this thread.

    Represents the thread group containing this thread.

    returns

    The profile of the thread group

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  70. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  71. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  72. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  73. def toJdiInstance: ThreadReference

    Permalink

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    PureThreadInfoProfileThreadInfoProfilePureObjectInfoProfileObjectInfoProfilePureValueInfoProfileValueInfoProfileCommonInfoProfile
  74. 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
    PureValueInfoProfileValueInfoProfile
  75. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  76. 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
    ThreadInfoProfileObjectInfoProfileValueInfoProfileCommonInfoProfile
  77. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  78. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  79. def toStringInfo: StringInfoProfile

    Permalink

    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( ... )
  80. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  81. 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
    PureValueInfoProfileValueInfoProfile
    Annotations
    @throws( ... )
  82. def topFrame: FrameInfoProfile

    Permalink

    Retrieves the profile for the top (current) frame in the stack.

    Retrieves the profile for the top (current) frame in the stack.

    returns

    The new frame profile instance

    Definition Classes
    ThreadInfoProfile
  83. def totalFrames: Int

    Permalink

    Returns the total frames held in the current frame stack.

    Returns the total frames held in the current frame stack.

    returns

    The total number of frames

    Definition Classes
    PureThreadInfoProfileThreadInfoProfile
  84. 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
  85. 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
  86. def tryFindVariableByIndex(frameIndex: Int, offsetIndex: Int): Try[VariableInfoProfile]

    Permalink

    Retrieves an active variable from the specified stack frame using its index and the offset of visible, local variables in the stack frame.

    Retrieves an active variable from the specified stack frame using its index and the offset of visible, local variables in the stack frame.

    frameIndex

    The index of the frame containing the variable

    offsetIndex

    The offset within the frame to find the variable

    returns

    Some variable if found, otherwise None

    Definition Classes
    ThreadInfoProfile
  87. def tryFindVariableByName(name: String): Try[VariableInfoProfile]

    Permalink

    Retrieves an active variable within the thread's stack frames with the matching name.

    Retrieves an active variable within the thread's stack frames with the matching name.

    name

    The name of the variable to find

    returns

    Success containing the variable if found, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  88. def tryFrame(index: Int): Try[FrameInfoProfile]

    Permalink

    Retrieves the profile for the specified frame in the stack.

    Retrieves the profile for the specified frame in the stack.

    index

    The index (starting with 0 being top) of the frame whose profile to retrieve

    returns

    Success containing the new frame profile instance, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  89. def tryFrames(index: Int, length: Int): Try[Seq[FrameInfoProfile]]

    Permalink

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    Retrieves profiles for all frames in the stack starting from the specified index and up to the desired length.

    index

    The index (starting with 0 being top) of the first frame whose profile to retrieve

    length

    The total number of frames to retrieve starting with the one at index, or -1 if all frames including and after the index should be retrieved

    returns

    Success of collection of frame profiles, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  90. def tryFrames: Try[Seq[FrameInfoProfile]]

    Permalink

    Retrieves profiles for all frames in the stack.

    Retrieves profiles for all frames in the stack.

    returns

    Success of collection of frame profiles, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. def tryTopFrame: Try[FrameInfoProfile]

    Permalink

    Retrieves the profile for the top (current) frame in the stack.

    Retrieves the profile for the top (current) frame in the stack.

    returns

    Success containing the new frame profile instance, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  108. def tryTotalFrames: Try[Int]

    Permalink

    Returns the total frames held in the current frame stack.

    Returns the total frames held in the current frame stack.

    returns

    Success containing the total number of frames, otherwise a failure

    Definition Classes
    ThreadInfoProfile
  109. 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
  110. 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
    PureObjectInfoProfileObjectInfoProfilePureValueInfoProfileValueInfoProfile
  111. 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
    PureObjectInfoProfileObjectInfoProfile
  112. 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
  113. final def wait(): Unit

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

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

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

Inherited from ThreadInfoProfile

Inherited from PureObjectInfoProfile

Inherited from ObjectInfoProfile

Inherited from PureValueInfoProfile

Inherited from ValueInfoProfile

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped