parambytes Data super(Constants.CONSTANT_Long); this.bytes = bytes;
super(Constants.CONSTANT_Long); this.bytes = bytes;
Initialize from another object. this(c.getBytes());
this(c.getBytes());
Initialize instance from file data.paramfile Input streamthrowIOException this(file.readLong());
this(file.readLong());
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects.paramv Visitor object v.visitConstantLong(this);
v.visitConstantLong(this);
Dump constant long to file stream in binary format.paramfile Output file streamthrowIOException file.writeByte(tag); file.writeLong(bytes);
file.writeByte(tag); file.writeLong(bytes);
returndata, i.e., 8 bytes. return bytes;
return bytes;
returnLong object return new Long(bytes);
return new Long(bytes);
parambytes. this.bytes = bytes;
this.bytes = bytes;
returnString representation. return super.toString() + "(bytes = " + bytes + ")";
return super.toString() + "(bytes = " + bytes + ")";