6869707172737475
@Override public int nextInt(boolean readStream) throws IOException { if (!readStream) return latestRead; if (!valuePresent) throw new ValueNotPresentException("Cannot materialize int."); return readInt(); }
99100101102103104105106107
public double nextDouble(boolean readStream) throws IOException { if (!readStream) { return latestRead; } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize double."); } return readDouble(); }
737475767778798081
public short nextShort(boolean readStream) throws IOException { if (!readStream) { return latestValue(); } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize short."); } return readShort(); }
6162636465666768
@Override public long nextLong(boolean readStream) throws IOException { if (!readStream) return latestRead; if (!valuePresent) throw new ValueNotPresentException("Cannot materialize long."); return readLong(); }
686970717273747576
public long nextLong(boolean readStream) throws IOException { if (!readStream) { return latestValue(); } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize long."); } return readLong(); }
9899100101102103104105106
public float nextFloat(boolean readStream) throws IOException, ValueNotPresentException { if (!readStream) { return latestRead; } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize float.."); } return readFloat(); }
public int nextInt(boolean readStream) throws IOException { if (!readStream) { return latestValue(); } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize int."); } return readInt(); }
96979899100101102103104105
public boolean nextBoolean(boolean readStream) throws IOException { if (!readStream) { return latestRead; } if (!valuePresent) { throw new ValueNotPresentException("Cannot materialize boolean."); } return readBoolean(); }
@Override public short nextShort(boolean readStream) throws IOException { if (!readStream) return latestRead; if (!valuePresent) throw new ValueNotPresentException("Cannot materialize short."); return readShort(); }