Package org.apache.bcel.classfile
Interface ConstantObject
-
- All Known Implementing Classes:
ConstantClass,ConstantDouble,ConstantFloat,ConstantInteger,ConstantLong,ConstantModule,ConstantPackage,ConstantString
public interface ConstantObject
This interface denotes those constants that have a "natural" value, such as ConstantLong, ConstantString, etc..- See Also:
Constant
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetConstantValue(ConstantPool constantPool)Gets the object representing the constant, e.g., Long for ConstantLong.
-
-
-
Method Detail
-
getConstantValue
java.lang.Object getConstantValue(ConstantPool constantPool)
Gets the object representing the constant, e.g., Long for ConstantLong.- Parameters:
constantPool- the constant.- Returns:
- object representing the constant, e.g., Long for ConstantLong.
-
-