org.scaladebugger.api.lowlevel.wrappers

ValueWrapper

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

Instance Constructors

  1. new ValueWrapper(_value: Value)

    _value

    The value to wrap

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

    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

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

    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

  12. def finalize(): Unit

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

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

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

    Definition Classes
    Any
  16. val isObject: Boolean

    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

  17. val isPrimitive: Boolean

    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

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

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

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

    Definition Classes
    AnyRef
  21. def objectValue(): AnyRef

    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

  22. def objectValueAsOption(): Option[AnyRef]

    Retrieves a representation of the object.

    Retrieves a representation of the object.

    returns

    Some value if available, otherwise None

  23. def primitiveValue(): AnyVal

    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

  24. def primitiveValueAsOption(): Option[AnyVal]

    Retrieves the actual primitive value as an option.

    Retrieves the actual primitive value as an option.

    returns

    Some primitive value if available, otherwise None

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

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

    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

  27. def toString(): String

    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
  28. def value(): Any

    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

  29. def valueAsOption(): Option[Any]

    Retrieves the actual value representing this value.

    Retrieves the actual value representing this value.

    returns

    Some(value) if available, otherwise None

  30. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped