All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.cadrian.jsonref.DeserializationContext Maven / Gradle / Ivy

The newest version!
package net.cadrian.jsonref;

import java.io.IOException;

interface DeserializationContext {
	public void next() throws IOException;

	public void skipSpaces() throws IOException;

	public boolean isValid();

	public char get();

	public int getIndex();

	public int getRef();

	public void setRef(int ref);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy