Class

org.scaladebugger.api.lowlevel.wrappers

ValueWrapper

Related Doc: package wrappers

Permalink

class ValueWrapper extends AnyRef

Represents a wrapper around a value, providing additional methods.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ValueWrapper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ValueWrapper(_value: Value)

    Permalink

    _value

    The value to wrap

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 fieldsAndValues(): Map[Field, Value]

    Permalink

    Retrieves the immediate visible fields and associated values for this specific value.

    Retrieves the immediate visible fields and associated values for this specific value.

    returns

    The map of field -> value pairings

    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If the value is not an object reference

  9. def fieldsAndValuesAsOption(): Option[Map[Field, Value]]

    Permalink

    Retrieves the immediate visible fields and associated values for this specific value.

    Retrieves the immediate visible fields and associated values for this specific value.

    returns

    Some map of fields and values if available, otherwise None

  10. def finalize(): Unit

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

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

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

    Permalink
    Definition Classes
    Any
  14. val isObject: Boolean

    Permalink

    Indicates whether or not the wrapped value is an object reference.

    Indicates whether or not the wrapped value is an object reference.

    returns

    True if the wrapped value is an object, otherwise false

  15. val isPrimitive: Boolean

    Permalink

    Indicates whether or not the wrapped value is a primitive value.

    Indicates whether or not the wrapped value is a primitive value.

    returns

    True if the wrapped value is a primitive, otherwise false

  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. def objectValue(): AnyRef

    Permalink

    Retrieves a representation of the object.

    Retrieves a representation of the object.

    returns

    The value representing the object reference (varies by type)

    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If the value is not an object reference

  20. def objectValueAsOption(): Option[AnyRef]

    Permalink

    Retrieves a representation of the object.

    Retrieves a representation of the object.

    returns

    Some value if available, otherwise None

  21. def primitiveValue(): AnyVal

    Permalink

    Retrieves the actual primitive value represented by this value.

    Retrieves the actual primitive value represented by this value.

    returns

    The primitive value represented by this instance

    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If the value is not a primitive value

  22. def primitiveValueAsOption(): Option[AnyVal]

    Permalink

    Retrieves the actual primitive value as an option.

    Retrieves the actual primitive value as an option.

    returns

    Some primitive value if available, otherwise None

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

    Permalink
    Definition Classes
    AnyRef
  24. def toString(maxRecursionLevel: Int): String

    Permalink

    Constructs a string representing this value and recursively this value's fields (if it has any) up to the maximum level.

    Constructs a string representing this value and recursively this value's fields (if it has any) up to the maximum level.

    maxRecursionLevel

    The maximum level of recursion for building this value's string

    returns

    The string representing this value

  25. def toString(): String

    Permalink

    Constructs a string representing this value (with no recursion).

    Constructs a string representing this value (with no recursion).

    returns

    The string representing this value

    Definition Classes
    ValueWrapper → AnyRef → Any
  26. def value(): Any

    Permalink

    Retrieves the actual value representing this value.

    Retrieves the actual value representing this value.

    returns

    The value instance if available

    Annotations
    @throws( ... )
    Exceptions thrown

    Throwable If value is neither a primitive nor an object

  27. def valueAsOption(): Option[Any]

    Permalink

    Retrieves the actual value representing this value.

    Retrieves the actual value representing this value.

    returns

    Some(value) if available, otherwise None

  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 AnyRef

Inherited from Any

Ungrouped