com.amazon.ion.impl._Private_IncrementalReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ion-java Show documentation
Show all versions of ion-java Show documentation
A Java implementation of the Amazon Ion data notation.
package com.amazon.ion.impl;
/**
* Interface to be implemented by all incremental IonReaders. See
* {@link com.amazon.ion.system.IonReaderBuilder#withIncrementalReadingEnabled(boolean)}.
*/
public interface _Private_IncrementalReader {
/**
* Requires that the reader not currently be buffering an incomplete value.
* @throws com.amazon.ion.IonException if the reader is buffering an incomplete value.
*/
void requireCompleteValue();
}