Trait

org.scaladebugger.api.profiles.traits.info

ThreadInfoProfile

Related Doc: package info

Permalink

trait ThreadInfoProfile extends ObjectInfoProfile with CommonInfoProfile

Represents the interface for thread-based interaction.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ThreadInfoProfile
  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 fieldOption(name: String): Option[VariableInfoProfile]

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

    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
  3. abstract 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

  4. abstract 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

  5. abstract def indexedFieldOption(name: String): Option[VariableInfoProfile]

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

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

    Permalink

    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
    ObjectInfoProfile
  8. abstract def invoke(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.

    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
  9. 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
  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 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
  15. 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
  16. 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
  17. abstract def name: String

    Permalink

    Represents the name of the thread.

    Represents the name of the thread.

    returns

    The thread name as a string

  18. abstract 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
  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 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.

  21. 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
  22. abstract 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

  23. abstract def suspend(): Unit

    Permalink

    Suspends the thread by incrementing the pending suspension counter.

  24. 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( ... )
  25. abstract 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
    ThreadInfoProfileObjectInfoProfileValueInfoProfileCommonInfoProfile
  26. 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
  27. 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( ... )
  28. 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( ... )
  29. 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( ... )
  30. abstract 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

  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 thread.

    Represents the unique id of this thread.

    returns

    The unique id as a long

    Definition Classes
    ThreadInfoProfileObjectInfoProfile

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): VariableInfoProfile

    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. 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

  11. 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

  12. 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

  13. final def getClass(): Class[_]

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

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

    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( ... )
  16. def invoke(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.

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

    Permalink
    Definition Classes
    Any
  18. 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( ... )
  19. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  23. 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
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. 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

  26. def tryField(name: String): Try[VariableInfoProfile]

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

    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
  28. 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

  29. 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

  30. 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

  31. 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

  32. 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

  33. def tryIndexedField(name: String): Try[VariableInfoProfile]

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

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

    Permalink

    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
  36. def tryInvoke(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.

    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
  37. def tryInvoke(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.

    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
  38. 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
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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

  46. 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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. 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