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

org.codehaus.jackson.impl.JsonNumericParserBase Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.10.9.2
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy