Class ConstantInteger
java.lang.Object
org.apache.bcel.classfile.Constant
org.apache.bcel.classfile.ConstantInteger
- All Implemented Interfaces:
Cloneable, ConstantObject, Node
This class is derived from the abstract
Constant and represents a reference to an int object.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionConstantInteger(int bytes) Constructs a ConstantInteger.Initialize from another object. -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.voiddump(DataOutputStream file) Dumps constant integer to file stream in binary format.intgetBytes()Gets the data.Gets the Integer object.voidsetBytes(int bytes) Sets the raw bytes that represent the integer value.toString()Methods inherited from class Constant
clone, copy, equals, getComparator, getTag, hashCode, readConstant, setComparator
-
Constructor Details
-
ConstantInteger
Initialize from another object.- Parameters:
c- Source to copy.
-
ConstantInteger
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
dump
Dumps constant integer to file stream in binary format.- Specified by:
dumpin classConstant- Parameters:
file- Output file stream.- Throws:
IOException- if an I/O error occurs.
-
getBytes
-
getConstantValue
Gets the Integer object.- Specified by:
getConstantValuein interfaceConstantObject- Parameters:
cp- the constant pool (not used).- Returns:
- Integer object.
-
setBytes
Sets the raw bytes that represent the integer value.- Parameters:
bytes- the raw bytes that represent the integer value.
-
toString
-