blob: d000a1d290445669c6118b4a07a4cd7358963642 [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.impl;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdt.internal.compiler.*;
public class IntConstant extends Constant {
int value;
public IntConstant(int value) {
this.value = value;
}
public byte byteValue() {
return (byte) value;
}
public char charValue() {
return (char) value;
}
public double doubleValue() {
return (double) value;
}
public float floatValue() {
return (float) value;
}
public int intValue() {
return (int) value;
}
public long longValue() {
return (long) value;
}
public short shortValue() {
return (short) value;
}
public String stringValue() {
//spec 15.17.11
String s = new Integer(value).toString() ;
if (s == null)
return "null"; //$NON-NLS-1$
else
return s;
}
public String toString(){
return "(int)" + value ; } //$NON-NLS-1$
public int typeID() {
return T_int;
}
}