Trait

org.scaladebugger.api.profiles.traits.info

ValueInfoProfile

Related Doc: package info

Permalink

trait ValueInfoProfile extends CommonInfoProfile

Represents information about a value.

Linear Supertypes
CommonInfoProfile, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueInfoProfile
  2. CommonInfoProfile
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

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

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

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

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

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

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

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

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

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

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

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

    Annotations
    @throws( ... )
  13. abstract def toClassLoaderInfo: ClassLoaderInfoProfile

    Permalink

    Returns the value as a class loader (profile).

    Returns the value as a class loader (profile).

    returns

    The class loader profile wrapping this value

    Annotations
    @throws( ... )
  14. abstract def toClassObjectInfo: ClassObjectInfoProfile

    Permalink

    Returns the value as a class object (profile).

    Returns the value as a class object (profile).

    returns

    The class object profile wrapping this value

    Annotations
    @throws( ... )
  15. abstract def toJdiInstance: Value

    Permalink

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

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

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

    Annotations
    @throws( ... )
  18. 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

    Annotations
    @throws( ... )
  19. 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

    Annotations
    @throws( ... )
  20. abstract def toThreadGroupInfo: ThreadGroupInfoProfile

    Permalink

    Returns the value as a thread group (profile).

    Returns the value as a thread group (profile).

    returns

    The thread group profile wrapping this value

    Annotations
    @throws( ... )
  21. abstract def toThreadInfo: ThreadInfoProfile

    Permalink

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

    The thread profile wrapping this value

    Annotations
    @throws( ... )
  22. abstract def typeInfo: TypeInfoProfile

    Permalink

    Returns the type information for the value.

    Returns the type information for the value.

    returns

    The profile containing type information

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. 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
    ValueInfoProfileCommonInfoProfile
  17. def toString(): String

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

  19. def tryToClassLoaderInfo: Try[ClassLoaderInfoProfile]

    Permalink

    Returns the value as a class loader (profile).

    Returns the value as a class loader (profile).

    returns

    Success containing the class loader profile wrapping this value, otherwise a failure

  20. def tryToClassObjectInfo: Try[ClassObjectInfoProfile]

    Permalink

    Returns the value as a class object (profile).

    Returns the value as a class object (profile).

    returns

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

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

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

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

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

  25. def tryToThreadGroupInfo: Try[ThreadGroupInfoProfile]

    Permalink

    Returns the value as a thread group (profile).

    Returns the value as a thread group (profile).

    returns

    Success containing the thread group profile wrapping this value, otherwise a failure

  26. def tryToThreadInfo: Try[ThreadInfoProfile]

    Permalink

    Returns the value as a thread (profile).

    Returns the value as a thread (profile).

    returns

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

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

  28. final def wait(): Unit

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

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

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

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped