Class EnumElementValue
java.lang.Object
org.apache.bcel.classfile.ElementValue
org.apache.bcel.classfile.EnumElementValue
Represents an enum element value in an annotation.
- Since:
- 6.0
-
Field Summary
Fields inherited from class 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
ConstructorsConstructorDescriptionEnumElementValue(int type, int typeIdx, int valueIdx, ConstantPool cpool) Constructs an EnumElementValue. -
Method Summary
Modifier and TypeMethodDescriptionvoiddump(DataOutputStream dos) Dumps this element value to a DataOutputStream.Gets the enum type string.Gets the enum value string.intGets the type index.intGets the value index.Returns a string representation of the element value.Methods inherited from class ElementValue
getElementValueType, readElementValue, readElementValue, toShortString, toString
-
Constructor Details
-
EnumElementValue
Constructs an EnumElementValue.- Parameters:
type- the element value type.typeIdx- the type index.valueIdx- the value index.cpool- the constant pool.
-
-
Method Details
-
dump
Description copied from class:ElementValueDumps this element value to a DataOutputStream.- Specified by:
dumpin classElementValue- Parameters:
dos- the output stream.- Throws:
IOException- if an I/O error occurs.
-
getEnumTypeString
-
getEnumValueString
-
getTypeIndex
-
getValueIndex
-
stringifyValue
Description copied from class:ElementValueReturns a string representation of the element value.- Specified by:
stringifyValuein classElementValue- Returns:
- a string representation of the element value.
-