Constructor. super(CONSTANT_UTF8, 1);
super(CONSTANT_UTF8, 1);
Get the string value of the UTF-8 entryreturnthe UTF-8 value as a Java string return value;
return value;
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. value = cpStream.readUTF();
value = cpStream.readUTF();
Print a readable version of the constant pool entry.returnthe string representation of this constant pool entry. return "UTF8 Value = " + value;
return "UTF8 Value = " + value;