Class SimpleElementValueGen
java.lang.Object
org.apache.bcel.generic.ElementValueGen
org.apache.bcel.generic.SimpleElementValueGen
Generates simple element values in annotations.
- Since:
- 6.0
-
Field Summary
Fields inherited from class ElementValueGen
ANNOTATION, ARRAY, CLASS, cpGen, ENUM_CONSTANT, PRIMITIVE_BOOLEAN, PRIMITIVE_BYTE, PRIMITIVE_CHAR, PRIMITIVE_DOUBLE, PRIMITIVE_FLOAT, PRIMITIVE_INT, PRIMITIVE_LONG, PRIMITIVE_SHORT, STRING, type -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSimpleElementValueGen(int type, int idx, ConstantPoolGen cpGen) Protected ctor used for deserialization, doesn't *put* an entry in the constant pool, assumes the one at the supplied index is correct.SimpleElementValueGen(int type, ConstantPoolGen cpGen, boolean value) Constructs a SimpleElementValueGen for a boolean value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, byte value) Constructs a SimpleElementValueGen for a byte value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, char value) Constructs a SimpleElementValueGen for a char value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, double value) Constructs a SimpleElementValueGen for a double value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, float value) Constructs a SimpleElementValueGen for a float value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, int value) Constructs a SimpleElementValueGen for an int value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, long value) Constructs a SimpleElementValueGen for a long value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, short value) Constructs a SimpleElementValueGen for a short value.SimpleElementValueGen(int type, ConstantPoolGen cpGen, String value) Constructs a SimpleElementValueGen for a String value.SimpleElementValueGen(SimpleElementValue value, ConstantPoolGen cpool, boolean copyPoolEntries) The boolean controls whether we copy info from the 'old' constant pool to the 'new'. -
Method Summary
Modifier and TypeMethodDescriptionvoiddump(DataOutputStream dos) Dumps this element value to a DataOutputStream.Gets the immutable variant.intgetIndex()Gets the constant pool index.intGets the int value.Gets the string value.Returns a string representation of the element value.Methods inherited from class ElementValueGen
copy, getConstantPool, getElementValueType, readElementValue
-
Constructor Details
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a boolean value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The boolean value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a byte value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The byte value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a char value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The char value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a double value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The double value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a float value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The float value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for an int value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The int value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a long value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The long value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a short value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The short value.
-
SimpleElementValueGen
Constructs a SimpleElementValueGen for a String value.- Parameters:
type- The element value type.cpGen- The constant pool generator.value- The string value.
-
SimpleElementValueGen
Protected ctor used for deserialization, doesn't *put* an entry in the constant pool, assumes the one at the supplied index is correct.- Parameters:
type- The element value type.idx- The constant pool index.cpGen- The constant pool generator.
-
SimpleElementValueGen
public SimpleElementValueGen(SimpleElementValue value, ConstantPoolGen cpool, boolean copyPoolEntries) The boolean controls whether we copy info from the 'old' constant pool to the 'new'. You need to use this ctor if the annotation is being copied from one file to another.- Parameters:
value- The simple element value to copy.cpool- The constant pool generator.copyPoolEntries- whether to copy pool entries.
-
-
Method Details
-
dump
Description copied from class:ElementValueGenDumps this element value to a DataOutputStream.- Specified by:
dumpin classElementValueGen- Parameters:
dos- The output stream.- Throws:
IOException- Thrown if an I/O error occurs.
-
getElementValue
Gets the immutable variant.- Specified by:
getElementValuein classElementValueGen- Returns:
- The immutable variant.
-
getIndex
-
getValueInt
-
getValueString
-
stringifyValue
Description copied from class:ElementValueGenReturns a string representation of the element value.- Specified by:
stringifyValuein classElementValueGen- Returns:
- A string representation of the element value.
-