Constructs an instance. if (array == null) { throw new NullPointerException("array == null"); } this.array = array;
if (array == null) { throw new NullPointerException("array == null"); } this.array = array;
inheritDoc return cursor() < array.length;
return cursor() < array.length;
inheritDoc try { int value = array[cursor()]; advance(1); return value & 0xffff; } catch (ArrayIndexOutOfBoundsException ex) { throw new EOFException(); }
try { int value = array[cursor()]; advance(1); return value & 0xffff; } catch (ArrayIndexOutOfBoundsException ex) { throw new EOFException(); }
inheritDoc int short0 = read(); int short1 = read(); return short0 | (short1 << 16);
int short0 = read(); int short1 = read(); return short0 | (short1 << 16);
inheritDoc long short0 = read(); long short1 = read(); long short2 = read(); long short3 = read(); return short0 | (short1 << 16) | (short2 << 32) | (short3 << 48);
long short0 = read(); long short1 = read(); long short2 = read(); long short3 = read(); return short0 | (short1 << 16) | (short2 << 32) | (short3 << 48);