1 11 package org.eclipse.jdt.debug.core; 12 13 14 21 public interface IJavaPrimitiveValue extends IJavaValue { 22 23 28 public boolean getBooleanValue(); 29 30 35 public byte getByteValue(); 36 37 42 public char getCharValue(); 43 44 49 public double getDoubleValue(); 50 51 56 public float getFloatValue(); 57 58 63 public int getIntValue(); 64 65 70 public long getLongValue(); 71 72 77 public short getShortValue(); 78 } 79 | Popular Tags |