SPARQLBooleanJSONParser.java
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.query.resultio.sparqljson;
import java.io.IOException;
import java.io.InputStream;
import org.eclipse.rdf4j.model.ValueFactory;
import org.eclipse.rdf4j.query.QueryResultHandlerException;
import org.eclipse.rdf4j.query.resultio.BooleanQueryResultFormat;
import org.eclipse.rdf4j.query.resultio.BooleanQueryResultParser;
import org.eclipse.rdf4j.query.resultio.QueryResultFormat;
import org.eclipse.rdf4j.query.resultio.QueryResultParseException;
/**
* Parser for SPARQL-1.1 JSON Results Format documents
*
* @author Peter Ansell
* @see <a href="http://www.w3.org/TR/sparql11-results-json/">SPARQL 1.1 Query Results JSON Format</a>
*/
public class SPARQLBooleanJSONParser extends AbstractSPARQLJSONParser implements BooleanQueryResultParser {
/**
* Default constructor.
*/
public SPARQLBooleanJSONParser() {
super();
}
/**
* Construct a parser with a specific {@link ValueFactory}.
*
* @param valueFactory The factory to use to create values.
*/
public SPARQLBooleanJSONParser(ValueFactory valueFactory) {
super(valueFactory);
}
@Override
public QueryResultFormat getQueryResultFormat() {
return getBooleanQueryResultFormat();
}
@Override
public BooleanQueryResultFormat getBooleanQueryResultFormat() {
return BooleanQueryResultFormat.JSON;
}
@Override
@Deprecated
public boolean parse(InputStream in) throws IOException, QueryResultParseException {
try {
return parseQueryResultInternal(in, true, false);
} catch (QueryResultHandlerException e) {
throw new QueryResultParseException(e);
}
}
}