display(): String;
The display method of the JadeBytes class returns a string containing a textual description of the state and binary content of the receiver.
The following example shows the use of the display method.
vars bytes : JadeBytes; begin create bytes; bytes.setContent("JADE".Binary); write bytes.display; epilog delete bytes; end;
The following output is written to the Jade Interpreter Output Viewer.
---JadeBytes/17144.1--- length = 4 segment size = 256 segments = 1 Content: 00000001 4A41 4445 JADE