Package org.apache.bcel.classfile
Class SimpleElementValue
- java.lang.Object
-
- org.apache.bcel.classfile.ElementValue
-
- org.apache.bcel.classfile.SimpleElementValue
-
public class SimpleElementValue extends ElementValue
- Since:
- 6.0
-
-
Field Summary
-
Fields inherited from class org.apache.bcel.classfile.ElementValue
ANNOTATION, ARRAY, CLASS, cpool, ENUM_CONSTANT, PRIMITIVE_BOOLEAN, PRIMITIVE_BYTE, PRIMITIVE_CHAR, PRIMITIVE_DOUBLE, PRIMITIVE_FLOAT, PRIMITIVE_INT, PRIMITIVE_LONG, PRIMITIVE_SHORT, STRING, type
-
-
Constructor Summary
Constructors Constructor Description SimpleElementValue(int type, int index, ConstantPool cpool)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dump(DataOutputStream dos)
int
getIndex()
boolean
getValueBoolean()
byte
getValueByte()
char
getValueChar()
double
getValueDouble()
float
getValueFloat()
int
getValueInt()
long
getValueLong()
short
getValueShort()
String
getValueString()
void
setIndex(int index)
String
stringifyValue()
String
toString()
-
Methods inherited from class org.apache.bcel.classfile.ElementValue
getElementValueType, readElementValue, toShortString
-
-
-
-
Constructor Detail
-
SimpleElementValue
public SimpleElementValue(int type, int index, ConstantPool cpool)
-
-
Method Detail
-
getIndex
public int getIndex()
- Returns:
- Value entry index in the cpool
-
setIndex
public void setIndex(int index)
-
getValueString
public String getValueString()
-
getValueInt
public int getValueInt()
-
getValueByte
public byte getValueByte()
-
getValueChar
public char getValueChar()
-
getValueLong
public long getValueLong()
-
getValueFloat
public float getValueFloat()
-
getValueDouble
public double getValueDouble()
-
getValueBoolean
public boolean getValueBoolean()
-
getValueShort
public short getValueShort()
-
toString
public String toString()
- Overrides:
toString
in classElementValue
-
stringifyValue
public String stringifyValue()
- Specified by:
stringifyValue
in classElementValue
-
dump
public void dump(DataOutputStream dos) throws IOException
- Specified by:
dump
in classElementValue
- Throws:
IOException
-
-