org.scaladebugger.api.profiles.traits.info

ValueInfoProfile

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
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

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

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

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

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

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

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

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

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

    Returns the JDI representation this profile instance wraps.

    Returns the JDI representation this profile instance wraps.

    returns

    The JDI instance

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

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

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

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

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

    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: 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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

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

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

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

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

    Definition Classes
    AnyRef
  15. final def notify(): Unit

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

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

    Definition Classes
    AnyRef
  18. 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
    ValueInfoProfileCommonInfoProfile
  19. def toString(): String

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

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

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

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

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

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

  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CommonInfoProfile

Inherited from AnyRef

Inherited from Any

Ungrouped