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 ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
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);
}
}