org.scaladebugger.api.profiles.traits.info

ArrayInfoProfile

trait ArrayInfoProfile extends ObjectInfoProfile with CreateInfoProfile with CommonInfoProfile

Represents the interface for array-based interaction.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ArrayInfoProfile
  2. CreateInfoProfile
  3. ObjectInfoProfile
  4. ValueInfoProfile
  5. CommonInfoProfile
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createRemotely(value: String): ValueInfoProfile

    Creates the provided value on the remote JVM.

    Creates the provided value on the remote JVM.

    value

    The value to create (mirror) on the remote JVM

    returns

    The information about the remote value

    Definition Classes
    CreateInfoProfile
  2. abstract def createRemotely(value: AnyVal): ValueInfoProfile

    Creates the provided value on the remote JVM.

    Creates the provided value on the remote JVM.

    value

    The value to create (mirror) on the remote JVM

    returns

    The information about the remote value

    Definition Classes
    CreateInfoProfile
  3. abstract def fieldOption(name: String): Option[FieldVariableInfoProfile]

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

    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
  5. abstract def indexedFieldOption(name: String): Option[FieldVariableInfoProfile]

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

    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(thread: ThreadInfoProfile, method: MethodInfoProfile, arguments: Seq[Any], jdiArguments: JDIArgument*): ValueInfoProfile

    Invokes the object's method.

    Invokes the object's method.

    thread

    The thread within which to invoke the method

    method

    The method of the object to invoke

    arguments

    The arguments to provide to the method

    jdiArguments

    Optional arguments to provide custom settings to the method invocation

    returns

    The resulting value of the invocation

    Definition Classes
    ObjectInfoProfile
  8. abstract def isArray: Boolean

    Returns whether or not this value represents an array.

    Returns whether or not this value represents an array.

    returns

    True if an array, otherwise false

    Definition Classes
    ValueInfoProfile
  9. abstract def isClassLoader: Boolean

    Returns whether or not this value represents a class loader.

    Returns whether or not this value represents a class loader.

    returns

    True if a class loader, otherwise false

    Definition Classes
    ValueInfoProfile
  10. abstract def isClassObject: Boolean

    Returns whether or not this value represents a class object.

    Returns whether or not this value represents a class object.

    returns

    True if a class object, otherwise false

    Definition Classes
    ValueInfoProfile
  11. abstract def isNull: Boolean

    Returns whether or not this value is null.

    Returns whether or not this value is null.

    returns

    True if null, otherwise false

    Definition Classes
    ValueInfoProfile
  12. abstract def isObject: Boolean

    Returns whether or not this value represents an object.

    Returns whether or not this value represents an object.

    returns

    True if an object, otherwise false

    Definition Classes
    ValueInfoProfile
  13. abstract def isPrimitive: Boolean

    Returns whether or not this value represents a primitive.

    Returns whether or not this value represents a primitive.

    returns

    True if a primitive, otherwise false

    Definition Classes
    ValueInfoProfile
  14. abstract def isString: Boolean

    Returns whether or not this value represents a string.

    Returns whether or not this value represents a string.

    returns

    True if a string, otherwise false

    Definition Classes
    ValueInfoProfile
  15. abstract def isThread: Boolean

    Returns whether or not this value represents a thread.

    Returns whether or not this value represents a thread.

    returns

    True if a thread, otherwise false

    Definition Classes
    ValueInfoProfile
  16. abstract def isThreadGroup: Boolean

    Returns whether or not this value represents a thread group.

    Returns whether or not this value represents a thread group.

    returns

    True if a thread group, otherwise false

    Definition Classes
    ValueInfoProfile
  17. abstract def isVoid: Boolean

    Returns whether or not this value is void.

    Returns whether or not this value is void.

    returns

    True if void, otherwise false

    Definition Classes
    ValueInfoProfile
  18. abstract def length: Int

    Returns the length of the array.

    Returns the length of the array.

    returns

    The length of the array

  19. abstract def methodOption(name: String, parameterTypeNames: String*): Option[MethodInfoProfile]

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

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

    returns

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

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

    Returns all visible methods contained in this object.

    Returns all visible methods contained in this object.

    returns

    The profiles wrapping the visible methods in this object

    Definition Classes
    ObjectInfoProfile
  21. abstract def referenceType: ReferenceTypeInfoProfile

    Returns the reference type information for this object.

    Returns the reference type information for this object.

    returns

    The reference type information

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

  22. abstract def scalaVirtualMachine: ScalaVirtualMachine

    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
  23. abstract def setValueFromInfo(index: Int, value: ValueInfoProfile): ValueInfoProfile

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    The updated remote value

  24. abstract def setValuesFromInfo(values: Seq[ValueInfoProfile]): Seq[ValueInfoProfile]

    Sets the values of the array elements to the provided values.

    Sets the values of the array elements to the provided values.

    values

    The new values to use when overwriting elements in the array

    returns

    The updated remote values

  25. abstract def setValuesFromInfo(index: Int, values: Seq[ValueInfoProfile], srcIndex: Int, length: Int): Seq[ValueInfoProfile]

    Sets the values of the array elements starting at the specified location.

    Sets the values of the array elements starting at the specified location.

    index

    The location in the array to begin overwriting

    values

    The new values to use when overwriting elements in the array

    srcIndex

    The location in the provided value array to begin using values to overwrite this array

    length

    The total number of elements to overwrite, or -1 to overwrite all elements in the array from the beginning of the index

    returns

    The updated remote values

  26. abstract def toArrayInfo: ArrayInfoProfile

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

    The array profile wrapping this value

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

    Returns the value as a class loader (profile).

    Returns the value as a class loader (profile).

    returns

    The class loader profile wrapping this value

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

    Returns the value as a class object (profile).

    Returns the value as a class object (profile).

    returns

    The class object profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  29. abstract def toJdiInstance: ArrayReference

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

    Definition Classes
    ArrayInfoProfileObjectInfoProfileValueInfoProfileCommonInfoProfile
  30. abstract def toLocalValue: Any

    Returns the value as a value local to this JVM.

    Returns the value as a value local to this JVM.

    returns

    The value as a local instance

    Definition Classes
    ValueInfoProfile
  31. abstract def toObjectInfo: ObjectInfoProfile

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

    The object profile wrapping this value

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

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

    The primitive profile wrapping this value

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

    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( ... )
  34. abstract def toThreadGroupInfo: ThreadGroupInfoProfile

    Returns the value as a thread group (profile).

    Returns the value as a thread group (profile).

    returns

    The thread group profile wrapping this value

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

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

    The thread profile wrapping this value

    Definition Classes
    ValueInfoProfile
    Annotations
    @throws( ... )
  36. abstract def typeInfo: ArrayTypeInfoProfile

    Returns the type information for the array.

    Returns the type information for the array.

    returns

    The profile containing type information

    Definition Classes
    ArrayInfoProfileObjectInfoProfileValueInfoProfile
  37. abstract def uniqueId: Long

    Represents the unique id of this object.

    Represents the unique id of this object.

    returns

    The unique id as a long

    Definition Classes
    ObjectInfoProfile
  38. abstract def value(index: Int): ValueInfoProfile

    Retrieves the value in the array at the specified index.

    Retrieves the value in the array at the specified index.

    index

    The location in the array to retrieve a value

    returns

    The retrieved value

  39. abstract def values: Seq[ValueInfoProfile]

    Retrieves all values from the array.

    Retrieves all values from the array.

    returns

    The retrieved values

  40. abstract def values(index: Int, length: Int): Seq[ValueInfoProfile]

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    index

    The location in the array to begin retrieving values

    length

    The number of values to retrieve, or -1 to retrieve all remaining values to the end of the array

    returns

    The retrieved values

Concrete Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def apply(): Seq[ValueInfoProfile]

    Retrieves all values from the array.

    Retrieves all values from the array.

    returns

    The retrieved values

  7. def apply(index: Int, length: Int): Seq[ValueInfoProfile]

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    index

    The location in the array to begin retrieving values

    length

    The number of values to retrieve, or -1 to retrieve all remaining values to the end of the array

    returns

    The retrieved values

  8. def apply(index: Int): ValueInfoProfile

    Retrieves the value in the array at the specified index.

    Retrieves the value in the array at the specified index.

    index

    The location in the array to retrieve a value

    returns

    The retrieved value

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

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

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

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

    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( ... )
  14. def finalize(): Unit

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

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

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

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

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

    name

    The name of the field

    returns

    The profile wrapping the field

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

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

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

    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

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

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

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

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

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

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

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

    returns

    The profile wrapping the method

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

    Definition Classes
    AnyRef
  23. def newValueProfileFromLocalValue[T](value: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): ValueInfoProfile

    Attributes
    protected
  24. final def notify(): Unit

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

    Definition Classes
    AnyRef
  26. def setValue[T](index: Int, value: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): ValueInfoProfile

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    The updated remote value

  27. def setValues[T](values: Seq[T])(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Seq[ValueInfoProfile]

    Sets the values of the array elements to the provided values.

    Sets the values of the array elements to the provided values.

    values

    The new values to use when overwriting elements in the array

    returns

    The updated remote values

  28. def setValues[T](index: Int, values: Seq[T], srcIndex: Int, length: Int)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Seq[ValueInfoProfile]

    Sets the values of the array elements starting at the specified location.

    Sets the values of the array elements starting at the specified location.

    index

    The location in the array to begin overwriting

    values

    The new values to use when overwriting elements in the array

    srcIndex

    The location in the provided value array to begin using values to overwrite this array

    length

    The total number of elements to overwrite, or -1 to overwrite all elements in the array from the beginning of the index

    returns

    The updated remote values

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

    Definition Classes
    AnyRef
  30. def toPrettyString(maxElements: Int): String

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

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

    maxElements

    The maximum number of elements to retrieve from the array (starting from the beginning) to display in the string

    returns

    The human-readable description

  31. def toPrettyString: String

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

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

    returns

    The human-readable description

    Definition Classes
    ArrayInfoProfileObjectInfoProfileValueInfoProfileCommonInfoProfile
  32. def toString(): String

    Definition Classes
    AnyRef → Any
  33. def tryCreateRemotely(value: String): Try[ValueInfoProfile]

    Creates the provided value on the remote JVM.

    Creates the provided value on the remote JVM.

    value

    The value to create (mirror) on the remote JVM

    returns

    Success containing the information about the remote value, otherwise a failure

    Definition Classes
    CreateInfoProfile
  34. def tryCreateRemotely(value: AnyVal): Try[ValueInfoProfile]

    Creates the provided value on the remote JVM.

    Creates the provided value on the remote JVM.

    value

    The value to create (mirror) on the remote JVM

    returns

    Success containing the information about the remote value, otherwise a failure

    Definition Classes
    CreateInfoProfile
  35. def tryField(name: String): Try[FieldVariableInfoProfile]

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

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

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

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

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

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

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

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

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

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

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

    Returns the object's method with the specified name.

    Returns the object's method with the specified name.

    name

    The name of the method

    parameterTypeNames

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

    returns

    Success containing the profile wrapping the method, otherwise a failure

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

    Returns all visible methods contained in this object.

    Returns all visible methods contained in this object.

    returns

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

    Definition Classes
    ObjectInfoProfile
  44. def trySetValue[T](index: Int, value: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Try[ValueInfoProfile]

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    Success containing the updated remote value, otherwise a failure

  45. def trySetValueFromInfo(index: Int, value: ValueInfoProfile): Try[ValueInfoProfile]

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    Success containing the updated remote value, otherwise a failure

  46. def trySetValues[T](values: Seq[T])(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Try[Seq[ValueInfoProfile]]

    Sets the values of the array elements to the provided values.

    Sets the values of the array elements to the provided values.

    values

    The new values to use when overwriting elements in the array

    returns

    Success containing the updated remote values, otherwise a failure

  47. def trySetValues[T](index: Int, values: Seq[T], srcIndex: Int, length: Int)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): Try[Seq[ValueInfoProfile]]

    Sets the values of the array elements starting at the specified location.

    Sets the values of the array elements starting at the specified location.

    index

    The location in the array to begin overwriting

    values

    The new values to use when overwriting elements in the array

    srcIndex

    The location in the provided value array to begin using values to overwrite this array

    length

    The total number of elements to overwrite, or -1 to overwrite all elements in the array from the beginning of the index

    returns

    Success containing the updated values, otherwise a failure

  48. def trySetValuesFromInfo(values: Seq[ValueInfoProfile]): Try[Seq[ValueInfoProfile]]

    Sets the values of the array elements to the provided values.

    Sets the values of the array elements to the provided values.

    values

    The new values to use when overwriting elements in the array

    returns

    Success containing the updated remote values, otherwise a failure

  49. def trySetValuesFromInfo(index: Int, values: Seq[ValueInfoProfile], srcIndex: Int, length: Int): Try[Seq[ValueInfoProfile]]

    Sets the values of the array elements starting at the specified location.

    Sets the values of the array elements starting at the specified location.

    index

    The location in the array to begin overwriting

    values

    The new values to use when overwriting elements in the array

    srcIndex

    The location in the provided value array to begin using values to overwrite this array

    length

    The total number of elements to overwrite, or -1 to overwrite all elements in the array from the beginning of the index

    returns

    Success containing the updated remote values, otherwise a failure

  50. def tryToArrayInfo: Try[ArrayInfoProfile]

    Returns the value as an array (profile).

    Returns the value as an array (profile).

    returns

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

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

    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
  52. def tryToClassObjectInfo: Try[ClassObjectInfoProfile]

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

    Returns the value as a value local to this JVM.

    Returns the value as a value local to this JVM.

    returns

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

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

    Returns the value as an object (profile).

    Returns the value as an object (profile).

    returns

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

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

    Returns the value as a primitive (profile).

    Returns the value as a primitive (profile).

    returns

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

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

    Returns the value as a string (profile).

    Returns the value as a string (profile).

    returns

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

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

    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
  58. def tryToThreadInfo: Try[ThreadInfoProfile]

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

    Returns the type information for the value.

    Returns the type information for the value.

    returns

    Success containing the profile containing type information, otherwise a failure

    Definition Classes
    ValueInfoProfile
  60. def tryValue(index: Int): Try[ValueInfoProfile]

    Retrieves the value in the array at the specified index.

    Retrieves the value in the array at the specified index.

    index

    The location in the array to retrieve a value

    returns

    Success containing the retrieved value, otherwise a failure

  61. def tryValues: Try[Seq[ValueInfoProfile]]

    Retrieves all values from the array.

    Retrieves all values from the array.

    returns

    Success containing the retrieved values, otherwise a failure

  62. def tryValues(index: Int, length: Int): Try[Seq[ValueInfoProfile]]

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    Retrieves the values in the array starting from the specified index and continuing through the specified length of elements.

    index

    The location in the array to begin retrieving values

    length

    The number of values to retrieve, or -1 to retrieve all remaining values to the end of the array

    returns

    Success containing the retrieved values, otherwise a failure

  63. def uniqueIdHexString: String

    Represents the unique id of this object in hex form.

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

    returns

    The raw hex string

    Definition Classes
    ObjectInfoProfile
  64. def update(index: Int, value: ValueInfoProfile): ValueInfoProfile

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    The updated remote value

  65. def update[T](index: Int, value: T)(implicit typeTag: scala.reflect.api.JavaUniverse.TypeTag[T]): ValueInfoProfile

    Sets the value of the array element at the specified location.

    Sets the value of the array element at the specified location.

    index

    The location in the array whose value to overwrite

    value

    The new value to place in the array

    returns

    The updated remote value

  66. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CreateInfoProfile

Inherited from ObjectInfoProfile

Inherited from ValueInfoProfile

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped