(contents: string)
| 37 | } |
| 38 | |
| 39 | public static fromString(contents: string): ByteBuffer { |
| 40 | const byteArray: Uint8Array = IOHelper.stringToBytes(contents); |
| 41 | return ByteBuffer.fromBuffer(byteArray); |
| 42 | } |
| 43 | |
| 44 | public reset(): void { |
| 45 | this.position = 0; |