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

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

The 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