Class ConstantLong
java.lang.Object
org.apache.bcel.classfile.Constant
org.apache.bcel.classfile.ConstantLong
- All Implemented Interfaces:
Cloneable, ConstantObject, Node
This class is derived from the abstract
Constant and represents a reference to a long object.- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionConstantLong(long bytes) Constructs a ConstantLong.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 long to file stream in binary format.longgetBytes()Gets the data.Gets the Long object.voidsetBytes(long bytes) Sets the raw bytes that represent the long value.toString()Methods inherited from class Constant
clone, copy, equals, getComparator, getTag, hashCode, readConstant, setComparator
-
Constructor Details
-
ConstantLong
-
ConstantLong
-
-
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 long 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 Long object.- Specified by:
getConstantValuein interfaceConstantObject- Parameters:
cp- the constant pool (not used).- Returns:
- Long object.
-
setBytes
Sets the raw bytes that represent the long value.- Parameters:
bytes- the raw bytes that represent the long value.
-
toString
-