Uses of Class
org.openrdf.query.resultio.TupleQueryResultFormat

Packages that use TupleQueryResultFormat
org.openrdf.http.client   
org.openrdf.query.resultio   
org.openrdf.query.resultio.binary   
org.openrdf.query.resultio.sparqljson A writer for the SPARQL Query Results JSON Format 
org.openrdf.query.resultio.sparqlxml Parsers and writers for the SPARQL Query Results XML Format 
org.openrdf.repository.http A repository that serves as a proxy for a remote repository on a Sesame server. 
 

Uses of TupleQueryResultFormat in org.openrdf.http.client
 

Methods in org.openrdf.http.client that return TupleQueryResultFormat
 TupleQueryResultFormat HTTPClient.getPreferredTupleQueryResultFormat()
          Gets the preferred TupleQueryResultFormat for encoding tuple query results.
 

Methods in org.openrdf.http.client with parameters of type TupleQueryResultFormat
 void HTTPClient.setPreferredTupleQueryResultFormat(TupleQueryResultFormat format)
          Sets the preferred format for encoding tuple query results.
 

Uses of TupleQueryResultFormat in org.openrdf.query.resultio
 

Fields in org.openrdf.query.resultio declared as TupleQueryResultFormat
static TupleQueryResultFormat TupleQueryResultFormat.BINARY
          Binary RDF results table format.
static TupleQueryResultFormat TupleQueryResultFormat.JSON
          SPARQL Query Results JSON Format.
static TupleQueryResultFormat TupleQueryResultFormat.SPARQL
          SPARQL Query Results XML Format.
 

Methods in org.openrdf.query.resultio that return TupleQueryResultFormat
static TupleQueryResultFormat TupleQueryResultFormat.forFileName(String fileName)
          Tries to determine the appropriate tuple file format for a file, based on the extension specified in a file name.
static TupleQueryResultFormat TupleQueryResultFormat.forFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to determine the appropriate tuple file format for a file, based on the extension specified in a file name.
static TupleQueryResultFormat TupleQueryResultFormat.forMIMEType(String mimeType)
          Tries to determine the appropriate tuple file format based on the a MIME type that describes the content type.
static TupleQueryResultFormat TupleQueryResultFormat.forMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to determine the appropriate tuple file format based on the a MIME type that describes the content type.
protected  TupleQueryResultFormat TupleQueryResultParserRegistry.getKey(TupleQueryResultParserFactory factory)
           
protected  TupleQueryResultFormat TupleQueryResultWriterRegistry.getKey(TupleQueryResultWriterFactory factory)
           
static TupleQueryResultFormat QueryResultIO.getParserFormatForFileName(String fileName)
          Tries to match the extension of a file name against the list of RDF formats that can be parsed.
static TupleQueryResultFormat QueryResultIO.getParserFormatForFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to match the extension of a file name against the list of RDF formats that can be parsed.
static TupleQueryResultFormat QueryResultIO.getParserFormatForMIMEType(String mimeType)
          Tries to match a MIME type against the list of tuple query result formats that can be parsed.
static TupleQueryResultFormat QueryResultIO.getParserFormatForMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to match a MIME type against the list of tuple query result formats that can be parsed.
 TupleQueryResultFormat TupleQueryResultWriterFactory.getTupleQueryResultFormat()
          Returns the tuple query result format for this factory.
 TupleQueryResultFormat TupleQueryResultWriter.getTupleQueryResultFormat()
          Gets the query result format that this writer uses.
 TupleQueryResultFormat TupleQueryResultParserFactory.getTupleQueryResultFormat()
          Returns the tuple query result format for this factory.
 TupleQueryResultFormat TupleQueryResultParser.getTupleQueryResultFormat()
          Gets the query result format that this parser can parse.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForFileName(String fileName)
          Tries to match the extension of a file name against the list of RDF formats that can be written.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to match the extension of a file name against the list of RDF formats that can be written.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForMIMEType(String mimeType)
          Tries to match a MIME type against the list of tuple query result formats that can be written.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to match a MIME type against the list of tuple query result formats that can be written.
static TupleQueryResultFormat TupleQueryResultFormat.register(String name, String mimeType, String fileExt)
          Registers the specified tuple query result format.
 

Methods in org.openrdf.query.resultio that return types with arguments of type TupleQueryResultFormat
static Collection<TupleQueryResultFormat> TupleQueryResultFormat.values()
          Returns all known/registered tuple query result formats.
 

Methods in org.openrdf.query.resultio with parameters of type TupleQueryResultFormat
static TupleQueryResultParser QueryResultIO.createParser(TupleQueryResultFormat format)
          Convenience methods for creating TupleQueryResultParser objects.
static TupleQueryResultParser QueryResultIO.createParser(TupleQueryResultFormat format, ValueFactory valueFactory)
          Convenience methods for creating TupleQueryResultParser objects that use the specified ValueFactory to create RDF model objects.
static TupleQueryResultWriter QueryResultIO.createWriter(TupleQueryResultFormat format, OutputStream out)
          Convenience methods for creating TupleQueryResultWriter objects.
static TupleQueryResultFormat TupleQueryResultFormat.forFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to determine the appropriate tuple file format for a file, based on the extension specified in a file name.
static TupleQueryResultFormat TupleQueryResultFormat.forMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to determine the appropriate tuple file format based on the a MIME type that describes the content type.
static TupleQueryResultFormat QueryResultIO.getParserFormatForFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to match the extension of a file name against the list of RDF formats that can be parsed.
static TupleQueryResultFormat QueryResultIO.getParserFormatForMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to match a MIME type against the list of tuple query result formats that can be parsed.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForFileName(String fileName, TupleQueryResultFormat fallback)
          Tries to match the extension of a file name against the list of RDF formats that can be written.
static TupleQueryResultFormat QueryResultIO.getWriterFormatForMIMEType(String mimeType, TupleQueryResultFormat fallback)
          Tries to match a MIME type against the list of tuple query result formats that can be written.
static TupleQueryResult QueryResultIO.parse(InputStream in, TupleQueryResultFormat format)
          Parses a query result document and returns it as a TupleQueryResult object.
static void QueryResultIO.parse(InputStream in, TupleQueryResultFormat format, TupleQueryResultHandler handler, ValueFactory valueFactory)
          Parses a query result document, reporting the parsed solutions to the supplied TupleQueryResultHandler.
static void TupleQueryResultFormat.register(TupleQueryResultFormat format)
          Registers the specified tuple query result format.
static void QueryResultIO.write(TupleQueryResult tqr, TupleQueryResultFormat format, OutputStream out)
          Writes a query result document in a specific query result format to an output stream.
 

Uses of TupleQueryResultFormat in org.openrdf.query.resultio.binary
 

Methods in org.openrdf.query.resultio.binary that return TupleQueryResultFormat
 TupleQueryResultFormat BinaryQueryResultWriterFactory.getTupleQueryResultFormat()
          Returns BINARY.
 TupleQueryResultFormat BinaryQueryResultWriter.getTupleQueryResultFormat()
           
 TupleQueryResultFormat BinaryQueryResultParserFactory.getTupleQueryResultFormat()
          Returns BINARY.
 TupleQueryResultFormat BinaryQueryResultParser.getTupleQueryResultFormat()
           
 

Uses of TupleQueryResultFormat in org.openrdf.query.resultio.sparqljson
 

Methods in org.openrdf.query.resultio.sparqljson that return TupleQueryResultFormat
 TupleQueryResultFormat SPARQLResultsJSONWriterFactory.getTupleQueryResultFormat()
          Returns JSON.
 TupleQueryResultFormat SPARQLResultsJSONWriter.getTupleQueryResultFormat()
           
 

Uses of TupleQueryResultFormat in org.openrdf.query.resultio.sparqlxml
 

Methods in org.openrdf.query.resultio.sparqlxml that return TupleQueryResultFormat
 TupleQueryResultFormat SPARQLResultsXMLWriterFactory.getTupleQueryResultFormat()
          Returns SPARQL.
 TupleQueryResultFormat SPARQLResultsXMLWriter.getTupleQueryResultFormat()
           
 TupleQueryResultFormat SPARQLResultsXMLParserFactory.getTupleQueryResultFormat()
          Returns SPARQL.
 TupleQueryResultFormat SPARQLResultsXMLParser.getTupleQueryResultFormat()
           
 

Uses of TupleQueryResultFormat in org.openrdf.repository.http
 

Methods in org.openrdf.repository.http that return TupleQueryResultFormat
 TupleQueryResultFormat HTTPRepository.getPreferredTupleQueryResultFormat()
          Indicates the current preferred TupleQueryResultFormat.
 

Methods in org.openrdf.repository.http with parameters of type TupleQueryResultFormat
 void HTTPRepository.setPreferredTupleQueryResultFormat(TupleQueryResultFormat format)
          Sets the preferred serialization format for tuple query results to the supplied TupleQueryResultFormat, overriding the HTTPClient's default preference.
 



Copyright © 2001-2007 Aduna. All Rights Reserved.