Package org.eclipse.jdt.debug.core
Interface IJavaPrimitiveValue
- All Superinterfaces:
org.eclipse.core.runtime.IAdaptable,org.eclipse.debug.core.model.IDebugElement,IJavaValue,org.eclipse.debug.core.model.IValue
A primitive value on a Java debug target.
- Since:
- 2.0
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns this value as a boolean.byteReturns this value as a bytecharReturns this value as a chardoubleReturns this value as a doublefloatReturns this value as a floatintReturns this value as an intlongReturns this value as a longshortReturns this value as a shortMethods inherited from interface org.eclipse.core.runtime.IAdaptable
getAdapterMethods inherited from interface org.eclipse.debug.core.model.IDebugElement
getDebugTarget, getLaunch, getModelIdentifierMethods inherited from interface org.eclipse.jdt.debug.core.IJavaValue
getGenericSignature, getJavaType, getSignature, isNullMethods inherited from interface org.eclipse.debug.core.model.IValue
getReferenceTypeName, getValueString, getVariables, hasVariables, isAllocated
-
Method Details
-
getBooleanValue
boolean getBooleanValue()Returns this value as a boolean.- Returns:
- this value as a boolean
-
getByteValue
byte getByteValue()Returns this value as a byte- Returns:
- this value as a byte
-
getCharValue
char getCharValue()Returns this value as a char- Returns:
- this value as a char
-
getDoubleValue
double getDoubleValue()Returns this value as a double- Returns:
- this value as a double
-
getFloatValue
float getFloatValue()Returns this value as a float- Returns:
- this value as a float
-
getIntValue
int getIntValue()Returns this value as an int- Returns:
- this value as an int
-
getLongValue
long getLongValue()Returns this value as a long- Returns:
- this value as a long
-
getShortValue
short getShortValue()Returns this value as a short- Returns:
- this value as a short
-