public class ArrayBuffer<T>
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
ArrayBuffer<T> |
appendBuffer() |
int |
currentPtr() |
void |
decrementPtr() |
ArrayBuffer<T> |
dropBuffer() |
void |
dropPreviousBuffer() |
T |
next(boolean release) |
ArrayBuffer<T> |
nextBuffer() |
T |
peek() |
T |
pop() |
ArrayBuffer<T> |
previousBuffer() |
void |
push(T item) |
ArrayBuffer<T> |
rewindToHeadBuffer() |
int |
size() |
public int size()
public int currentPtr()
public void decrementPtr()
public ArrayBuffer<T> nextBuffer()
public ArrayBuffer<T> previousBuffer()
public void dropPreviousBuffer()
public ArrayBuffer<T> appendBuffer()
public ArrayBuffer<T> rewindToHeadBuffer()
public ArrayBuffer<T> dropBuffer()
public void push(T item)
public T peek()
public T pop()
public T next(boolean release)