blob: 8482c62ab41126d310a4a2390847e75ecc1d5e35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi;
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();
}