blob: 3ed079409176260cffec41e93fc00268de8710c6 [file] [log] [blame]
package org.jetbrains.debugger.values;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.debugger.EvaluateContextAdditionalParameter;
/**
* An object that represents a VM variable value (compound or atomic).
*/
public interface Value extends EvaluateContextAdditionalParameter {
@NotNull
ValueType getType();
/**
* @return a string representation of this value
*/
String getValueString();
}