public interface

DoubleValue

implements PrimitiveValue Comparable<T>
com.sun.jdi.DoubleValue
Known Indirect Subclasses

Class Overview

Provides access to a primitive double value in the target VM.

Summary

Public Methods
abstract boolean equals(Object obj)
Compares the specified Object with this DoubleValue for equality.
abstract int hashCode()
Returns the hash code value for this DoubleValue.
abstract double value()
Returns this DoubleValue as a double.
[Expand]
Inherited Methods
From interface com.sun.jdi.Mirror
From interface com.sun.jdi.PrimitiveValue
From interface com.sun.jdi.Value
From interface java.lang.Comparable

Public Methods

public abstract boolean equals (Object obj)

Compares the specified Object with this DoubleValue for equality.

Parameters
obj the reference object with which to compare.
Returns
  • true if the Object is a DoubleValue and if applying "==" to the two mirrored primitives would evaluate to true; false otherwise.

public abstract int hashCode ()

Returns the hash code value for this DoubleValue.

Returns
  • the integer hash code

public abstract double value ()

Returns this DoubleValue as a double.

Returns
  • the double mirrored by this object.