org.codehaus.jackson.impl.JsonNumericParserBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
package org.codehaus.jackson.impl;
import org.codehaus.jackson.*;
import org.codehaus.jackson.io.IOContext;
/**
* Another intermediate base class used by all Jackson {@link JsonParser}
* implementations. Contains shared functionality for dealing with
* number parsing aspects, independent of input source decoding.
*
* @deprecated Since 1.9.0: functionality demoted down to JsonParserBase
*/
@Deprecated
public abstract class JsonNumericParserBase
extends JsonParserBase
{
protected JsonNumericParserBase(IOContext ctxt, int features) {
super(ctxt, features);
}
}