Trait

org.scaladebugger.api.profiles.traits.info

ThreadInfo

Related Doc: package info

Permalink

trait ThreadInfo extends ObjectInfo with CommonInfo

Represents the interface for thread-based interaction.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ThreadInfo
  2. ObjectInfo
  3. ValueInfo
  4. CommonInfo
  5. JavaInfo
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def fieldOption(name: String): Option[FieldVariableInfo]

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

    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
    ObjectInfo
  3. abstract def frame(index: Int): FrameInfo

    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[FrameInfo]

    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[FieldVariableInfo]

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

    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
    ObjectInfo
  7. abstract def invoke(thread: ThreadInfo, method: MethodInfo, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfo

    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
    ObjectInfo
  8. 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
    ValueInfo
  9. 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
    ValueInfo
  10. 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
    ValueInfo
  11. abstract def isJavaInfo: Boolean

    Permalink

    Returns whether or not this info profile represents the low-level Java implementation.

    Returns whether or not this info profile represents the low-level Java implementation.

    returns

    If true, this profile represents the low-level Java information, otherwise this profile represents something higher-level like Scala, Jython, or JRuby

    Definition Classes
    JavaInfo
  12. 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
    ValueInfo
  13. 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
    ValueInfo
  14. 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
    ValueInfo
  15. 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
    ValueInfo
  16. 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
    ValueInfo
  17. 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
    ValueInfo
  18. 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
    ValueInfo
  19. abstract def methodOption(name: String, parameterTypeNames: String*): Option[MethodInfo]

    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
    ObjectInfo
  20. abstract def methods: Seq[MethodInfo]

    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
    ObjectInfo
  21. abstract def name: String

    Permalink

    Represents the name of the thread.

    Represents the name of the thread.

    returns

    The thread name as a string

  22. abstract def rawFrames(index: Int, length: Int): Seq[FrameInfo]

    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
  23. abstract def referenceType: ReferenceTypeInfo

    Permalink

    Returns the reference type information for this object.

    Returns the reference type information for this object.

    returns

    The reference type information

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

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

  25. 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
    CommonInfo
  26. abstract def status: ThreadStatusInfo

    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

  27. abstract def suspend(): Unit

    Permalink

    Suspends the thread by incrementing the pending suspension counter.

  28. abstract def threadGroup: ThreadGroupInfo

    Permalink

    Represents the thread group containing this thread.

    Represents the thread group containing this thread.

    returns

    The profile of the thread group

  29. abstract def toArrayInfo: ArrayInfo

    Permalink

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

    The array profile wrapping this value

    Definition Classes
    ValueInfo
    Annotations
    @throws( ... )
  30. abstract def toClassLoaderInfo: ClassLoaderInfo

    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
    ValueInfo
    Annotations
    @throws( ... )
  31. abstract def toClassObjectInfo: ClassObjectInfo

    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
    ValueInfo
    Annotations
    @throws( ... )
  32. abstract def toJavaInfo: ThreadInfo

    Permalink

    Converts the current profile instance to a representation of low-level Java instead of a higher-level abstraction.

    Converts the current profile instance to a representation of low-level Java instead of a higher-level abstraction.

    returns

    The profile instance providing an implementation corresponding to Java

    Definition Classes
    ThreadInfoObjectInfoValueInfoCommonInfoJavaInfo
  33. 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
    ThreadInfoObjectInfoValueInfoCommonInfo
  34. 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
    ValueInfo
  35. abstract def toObjectInfo: ObjectInfo

    Permalink

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

    The object profile wrapping this value

    Definition Classes
    ValueInfo
    Annotations
    @throws( ... )
  36. abstract def toPrimitiveInfo: PrimitiveInfo

    Permalink

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

    The primitive profile wrapping this value

    Definition Classes
    ValueInfo
    Annotations
    @throws( ... )
  37. abstract def toStringInfo: StringInfo

    Permalink

    Returns the value as an string (profile).

    Returns the value as an string (profile).

    returns

    The string profile wrapping this value

    Definition Classes
    ValueInfo
    Annotations
    @throws( ... )
  38. abstract def toThreadGroupInfo: ThreadGroupInfo

    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
    ValueInfo
    Annotations
    @throws( ... )
  39. abstract def toThreadInfo: ThreadInfo

    Permalink

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

    The thread profile wrapping this value

    Definition Classes
    ValueInfo
    Annotations
    @throws( ... )
  40. 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

  41. abstract def typeInfo: ReferenceTypeInfo

    Permalink

    Returns the type information for the object.

    Returns the type information for the object.

    returns

    The profile containing type information

    Definition Classes
    ObjectInfoValueInfo
  42. 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
    ObjectInfo

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

    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
    ObjectInfo
    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[VariableInfo]

    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[VariableInfo]

    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[FrameInfo]

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

    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
    ObjectInfo
    Annotations
    @throws( ... )
  16. def invoke(thread: ThreadInfo, methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfo

    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
    ObjectInfo
    Annotations
    @throws( ... )
    Exceptions thrown

    AssertionError When the parameter type and argument counts are not equivalent

  17. def invoke(thread: ThreadInfo, methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfo

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

    Permalink
    Definition Classes
    Any
  19. def method(name: String, parameterTypeNames: String*): MethodInfo

    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
    ObjectInfo
    Annotations
    @throws( ... )
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. def suspendAndExecute[T](thunk: ⇒ T): Try[T]

    Permalink

    Executes the provided code block, suspending the thread prior to execution and resuming it after (regardless of success or failure).

    Executes the provided code block, suspending the thread prior to execution and resuming it after (regardless of success or failure).

    T

    The return type of the block of code

    thunk

    The block of code to execute

    returns

    Success containing the result of the thunk, or a failure

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. 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
    ThreadInfoObjectInfoValueInfoCommonInfo
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. def topFrame: FrameInfo

    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

  28. def tryField(name: String): Try[FieldVariableInfo]

    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
    ObjectInfo
  29. def tryFields: Try[Seq[FieldVariableInfo]]

    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
    ObjectInfo
  30. def tryFindVariableByIndex(frameIndex: Int, offsetIndex: Int): Try[VariableInfo]

    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

  31. def tryFindVariableByName(name: String): Try[VariableInfo]

    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

  32. def tryFrame(index: Int): Try[FrameInfo]

    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

  33. def tryFrames(index: Int, length: Int): Try[Seq[FrameInfo]]

    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

  34. def tryFrames: Try[Seq[FrameInfo]]

    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

  35. def tryIndexedField(name: String): Try[FieldVariableInfo]

    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
    ObjectInfo
  36. def tryIndexedFields: Try[Seq[FieldVariableInfo]]

    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
    ObjectInfo
  37. def tryInvoke(thread: ThreadInfo, method: MethodInfo, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfo]

    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
    ObjectInfo
  38. def tryInvoke(thread: ThreadInfo, methodName: String, parameterTypeNames: Seq[String], arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfo]

    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
    ObjectInfo
  39. def tryInvoke(thread: ThreadInfo, methodName: String, arguments: Seq[Any], jdiArguments: JDIArgument*): Try[ValueInfo]

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

    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
    ObjectInfo
  41. def tryMethods: Try[Seq[MethodInfo]]

    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
    ObjectInfo
  42. def tryToArrayInfo: Try[ArrayInfo]

    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
    ValueInfo
  43. def tryToClassLoaderInfo: Try[ClassLoaderInfo]

    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
    ValueInfo
  44. def tryToClassObjectInfo: Try[ClassObjectInfo]

    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
    ValueInfo
  45. 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
    ValueInfo
  46. def tryToObjectInfo: Try[ObjectInfo]

    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
    ValueInfo
  47. def tryToPrimitiveInfo: Try[PrimitiveInfo]

    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
    ValueInfo
  48. def tryToStringInfo: Try[StringInfo]

    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
    ValueInfo
  49. def tryToThreadGroupInfo: Try[ThreadGroupInfo]

    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
    ValueInfo
  50. def tryToThreadInfo: Try[ThreadInfo]

    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
    ValueInfo
  51. def tryTopFrame: Try[FrameInfo]

    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

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

  53. def tryTypeInfo: Try[TypeInfo]

    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
    ValueInfo
  54. 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
    ObjectInfo
  55. final def wait(): Unit

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

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

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

Inherited from ObjectInfo

Inherited from ValueInfo

Inherited from CommonInfo

Inherited from JavaInfo

Inherited from AnyRef

Inherited from Any

Ungrouped