protected JsonParser _createJsonParser(InputStream paramInputStream, IOContext paramIOContext) throws IOException, JsonParseException { return new ByteSourceBootstrapper(paramIOContext, paramInputStream).constructParser(this._parserFeatures, this._objectCodec, this._rootByteSymbols, this._rootCharSymbols); }
protected JsonParser _createJsonParser(byte[] paramArrayOfByte, int paramInt1, int paramInt2, IOContext paramIOContext) throws IOException, JsonParseException { return new ByteSourceBootstrapper(paramIOContext, paramArrayOfByte, paramInt1, paramInt2).constructParser(this._parserFeatures, this._objectCodec, this._rootByteSymbols, this._rootCharSymbols); }
protected MatchStrength hasJSONFormat(InputAccessor paramInputAccessor) throws IOException { return ByteSourceBootstrapper.hasJSONFormat(paramInputAccessor); }
/** * Overridable construction method that actually instantiates desired parser. */ protected JsonParser _createJsonParser(InputStream in, IOContext ctxt) throws IOException, JsonParseException { return new ByteSourceBootstrapper(ctxt, in).constructParser(_parserFeatures, _objectCodec, _rootByteSymbols, _rootCharSymbols); }
protected JsonParser _createJsonParser(byte[] data, int offset, int len, IOContext ctxt) throws IOException, JsonParseException { // true -> managed (doesn't really matter; we have no stream!) return new ByteSourceBootstrapper(ctxt, data, offset, len).constructParser(_parserFeatures, _objectCodec, _rootByteSymbols, _rootCharSymbols); }
protected JsonParser _createJsonParser(InputStream paramInputStream, IOContext paramIOContext) { return new ByteSourceBootstrapper(paramIOContext, paramInputStream).constructParser(this._parserFeatures, this._objectCodec, this._rootByteSymbols, this._rootCharSymbols); }