JavaScript Development Tools
Release 3.2

org.eclipse.wst.jsdt.debug.core.jsdi
Interface PrimitiveValue

All Superinterfaces:
Mirror, Value
All Known Subinterfaces:
BooleanValue, NumberValue

public interface PrimitiveValue
extends Value

Abstract representation of a primitive value with-respect-to JavaScript debugging

Since:
1.0
See Also:
Value, BooleanValue, NumberValue, StringValue
Restriction:
This interface is not intended to be extended by clients.

Method Summary
 boolean booleanValue()
          Returns the boolean for the value.
 double doubleValue()
          Returns the double for the value.
 int intValue()
          Returns the integer for the value.
 String stringValue()
          Returns the String value for the value.
 
Methods inherited from interface org.eclipse.wst.jsdt.debug.core.jsdi.Value
valueString
 
Methods inherited from interface org.eclipse.wst.jsdt.debug.core.jsdi.Mirror
virtualMachine
 

Method Detail

intValue

int intValue()
Returns the integer for the value.

Returns:
the integer value

doubleValue

double doubleValue()
Returns the double for the value.

Returns:
the double value

booleanValue

boolean booleanValue()
Returns the boolean for the value.

Returns:
the boolean value

stringValue

String stringValue()
Returns the String value for the value.

This method can return null

Returns:
the String value

JavaScript Development Tools
Release 3.2

Copyright (c) IBM Corp. and others 2000, 2010. All Rights Reserved.