public interface PushbackBuffer
Modifier and Type | Method and Description |
---|---|
byte[] |
getBuffer()
Gets the current contents of the buffer without modifying the position.
|
void |
unread(byte[] bytes)
Push the bytes on to the head of the buffer, so they are the next bytes
returned.
|
void |
unread(byte[] bytes,
int off,
int len)
Push the bytes on to the head of the buffer, so they are the next bytes
returned.
|
void unread(byte[] bytes)
void unread(byte[] bytes, int off, int len)
byte[] getBuffer()
Copyright © 2019 The Codehaus Foundation. All rights reserved.