| package com.sun.jdi; | |
| /* | |
| * (c) Copyright IBM Corp. 2000, 2001. | |
| * All Rights Reserved. | |
| */ | |
| public interface PrimitiveValue extends Value { | |
| public boolean booleanValue(); | |
| public byte byteValue(); | |
| public char charValue(); | |
| public double doubleValue(); | |
| public float floatValue(); | |
| public int intValue(); | |
| public long longValue(); | |
| public short shortValue(); | |
| } |