Constructor super(CONSTANT_DOUBLE, 2);
super(CONSTANT_DOUBLE, 2);
read a constant pool entry from a class stream.paramcpStream the DataInputStream which contains the constant pool entry to be read.exceptionIOException if there is a problem reading the entry from the stream. setValue(new Double(cpStream.readDouble()));
setValue(new Double(cpStream.readDouble()));
Print a readable version of the constant pool entry.returnthe string representation of this constant pool entry. return "Double Constant Pool Entry: " + getValue();
return "Double Constant Pool Entry: " + getValue();