219220221222223224225226227
@Override public final HeapBuffer reset() { int m = mark; if (m < 0) throw new InvalidMarkException(); pos = m; return this; }
332333334335336337338339340
@Override public BuffersBuffer reset() { int m = mark; if (m < 0) throw new InvalidMarkException(); position = m; return this; }
898899900901902903904905906907
/** * @see ByteBuffer#reset() */ public IoBuffer reset() { if (mark == null) { throw new InvalidMarkException(); } position = mark.duplicate(); return this; }