|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use RDFFormat | |
|---|---|
| org.openrdf.http.client | |
| org.openrdf.query.resultio | |
| org.openrdf.repository | The Repository API: the main API for handling Sesame repositories. |
| org.openrdf.repository.base | |
| org.openrdf.repository.contextaware | |
| org.openrdf.repository.http | A repository that serves as a proxy for a remote repository on a Sesame server. |
| org.openrdf.rio | General classes and interfaces for RDF parsers and RDF writers. |
| org.openrdf.rio.n3 | Writer for RDF in Notation 3/N3 format. |
| org.openrdf.rio.ntriples | Parser and writer for RDF in N-Triples format. |
| org.openrdf.rio.rdfxml | Parser and writer for XML-serialized RDF. |
| org.openrdf.rio.rdfxml.util | |
| org.openrdf.rio.trig | Parser and writer for RDF in TriG format. |
| org.openrdf.rio.trix | Parser and writer for RDF in TriX format. |
| org.openrdf.rio.turtle | Parser and writer for RDF in Turtle format. |
| Uses of RDFFormat in org.openrdf.http.client |
|---|
| Methods in org.openrdf.http.client that return RDFFormat | |
|---|---|
RDFFormat |
HTTPClient.getPreferredRDFFormat()
Gets the preferred RDFFormat for encoding RDF documents. |
| Methods in org.openrdf.http.client with parameters of type RDFFormat | |
|---|---|
void |
HTTPClient.setPreferredRDFFormat(RDFFormat format)
Sets the preferred format for encoding RDF documents. |
void |
HTTPClient.upload(InputStream contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
Resource... contexts)
|
void |
HTTPClient.upload(Reader contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
Resource... contexts)
|
| Uses of RDFFormat in org.openrdf.query.resultio |
|---|
| Methods in org.openrdf.query.resultio with parameters of type RDFFormat | |
|---|---|
static void |
QueryResultIO.write(GraphQueryResult gqr,
RDFFormat format,
OutputStream out)
Writes a graph query result document in a specific RDF format to an output stream. |
| Uses of RDFFormat in org.openrdf.repository |
|---|
| Methods in org.openrdf.repository with parameters of type RDFFormat | |
|---|---|
void |
RepositoryConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the repository. |
void |
RepositoryConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from an InputStream to the repository, optionally to one or more named contexts. |
void |
RepositoryConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from a Reader to the repository, optionally to one or more named contexts. |
void |
RepositoryConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts. |
| Uses of RDFFormat in org.openrdf.repository.base |
|---|
| Methods in org.openrdf.repository.base with parameters of type RDFFormat | |
|---|---|
void |
RepositoryConnectionWrapper.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
protected void |
RepositoryConnectionBase.addInputStreamOrReader(Object inputStreamOrReader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds the data that can be read from the supplied InputStream or Reader to this repository. |
| Uses of RDFFormat in org.openrdf.repository.contextaware |
|---|
| Methods in org.openrdf.repository.contextaware with parameters of type RDFFormat | |
|---|---|
void |
ContextAwareConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
void |
ContextAwareConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
| Uses of RDFFormat in org.openrdf.repository.http |
|---|
| Methods in org.openrdf.repository.http that return RDFFormat | |
|---|---|
RDFFormat |
HTTPRepository.getPreferredRDFFormat()
Indicates the current preferred RDFFormat. |
| Methods in org.openrdf.repository.http with parameters of type RDFFormat | |
|---|---|
void |
HTTPRepository.setPreferredRDFFormat(RDFFormat format)
Sets the preferred serialization format for RDF to the supplied RDFFormat, overriding the HTTPClient's default preference. |
| Uses of RDFFormat in org.openrdf.rio |
|---|
| Fields in org.openrdf.rio declared as RDFFormat | |
|---|---|
static RDFFormat |
RDFFormat.N3
The N3/Notation3 file format. |
static RDFFormat |
RDFFormat.NTRIPLES
The N-Triples file format. |
static RDFFormat |
RDFFormat.RDFXML
The RDF/XML file format. |
static RDFFormat |
RDFFormat.TRIG
The TriG file format. |
static RDFFormat |
RDFFormat.TRIX
The TriX file format. |
static RDFFormat |
RDFFormat.TURTLE
The Turtle file format. |
| Methods in org.openrdf.rio that return RDFFormat | |
|---|---|
static RDFFormat |
RDFFormat.forFileName(String fileName)
Tries to determine the appropriate RDF file format based on the extension of a file name. |
static RDFFormat |
RDFFormat.forFileName(String fileName,
RDFFormat fallback)
Tries to determine the appropriate RDF file format based on the extension of a file name. |
static RDFFormat |
RDFFormat.forMIMEType(String mimeType)
Tries to determine the appropriate RDF file format based on the a MIME type that describes the content type. |
static RDFFormat |
RDFFormat.forMIMEType(String mimeType,
RDFFormat fallback)
Tries to determine the appropriate RDF file format based on the a MIME type that describes the content type. |
protected RDFFormat |
RDFParserRegistry.getKey(RDFParserFactory factory)
|
protected RDFFormat |
RDFWriterRegistry.getKey(RDFWriterFactory factory)
|
static RDFFormat |
Rio.getParserFormatForFileName(String fileName)
Tries to match the extension of a file name against the list of RDF formats that can be parsed. |
static RDFFormat |
Rio.getParserFormatForFileName(String fileName,
RDFFormat fallback)
Tries to match the extension of a file name against the list of RDF formats that can be parsed. |
static RDFFormat |
Rio.getParserFormatForMIMEType(String mimeType)
Tries to match a MIME type against the list of RDF formats that can be parsed. |
static RDFFormat |
Rio.getParserFormatForMIMEType(String mimeType,
RDFFormat fallback)
Tries to match a MIME type against the list of RDF formats that can be parsed. |
RDFFormat |
RDFWriterFactory.getRDFFormat()
Returns the RDF format for this factory. |
RDFFormat |
RDFWriter.getRDFFormat()
Gets the RDF format that this RDFWriter uses. |
RDFFormat |
RDFParserFactory.getRDFFormat()
Returns the RDF format for this factory. |
RDFFormat |
RDFParser.getRDFFormat()
Gets the RDF format that this parser can parse. |
static RDFFormat |
Rio.getWriterFormatForFileName(String fileName)
Tries to match the extension of a file name against the list of RDF formats that can be written. |
static RDFFormat |
Rio.getWriterFormatForFileName(String fileName,
RDFFormat fallback)
Tries to match the extension of a file name against the list of RDF formats that can be written. |
static RDFFormat |
Rio.getWriterFormatForMIMEType(String mimeType)
Tries to match a MIME type against the list of RDF formats that can be written. |
static RDFFormat |
Rio.getWriterFormatForMIMEType(String mimeType,
RDFFormat fallback)
Tries to match a MIME type against the list of RDF formats that can be written. |
static RDFFormat |
RDFFormat.register(String name,
String mimeType,
String fileExt,
Charset charset)
Registers the specified RDF file format. |
static RDFFormat |
RDFFormat.valueOf(String formatName)
Returns the RDF format whose name matches the specified name. |
| Methods in org.openrdf.rio that return types with arguments of type RDFFormat | |
|---|---|
static Collection<RDFFormat> |
RDFFormat.values()
Returns all known/registered RDF formats. |
| Methods in org.openrdf.rio with parameters of type RDFFormat | |
|---|---|
static RDFParser |
Rio.createParser(RDFFormat format)
Convenience methods for creating RDFParser objects. |
static RDFParser |
Rio.createParser(RDFFormat format,
ValueFactory valueFactory)
Convenience methods for creating RDFParser objects that use the specified ValueFactory to create RDF model objects. |
static RDFWriter |
Rio.createWriter(RDFFormat format,
OutputStream out)
Convenience methods for creating RDFWriter objects. |
static RDFWriter |
Rio.createWriter(RDFFormat format,
Writer writer)
Convenience methods for creating RDFWriter objects. |
static RDFFormat |
RDFFormat.forFileName(String fileName,
RDFFormat fallback)
Tries to determine the appropriate RDF file format based on the extension of a file name. |
static RDFFormat |
RDFFormat.forMIMEType(String mimeType,
RDFFormat fallback)
Tries to determine the appropriate RDF file format based on the a MIME type that describes the content type. |
static RDFFormat |
Rio.getParserFormatForFileName(String fileName,
RDFFormat fallback)
Tries to match the extension of a file name against the list of RDF formats that can be parsed. |
static RDFFormat |
Rio.getParserFormatForMIMEType(String mimeType,
RDFFormat fallback)
Tries to match a MIME type against the list of RDF formats that can be parsed. |
static RDFFormat |
Rio.getWriterFormatForFileName(String fileName,
RDFFormat fallback)
Tries to match the extension of a file name against the list of RDF formats that can be written. |
static RDFFormat |
Rio.getWriterFormatForMIMEType(String mimeType,
RDFFormat fallback)
Tries to match a MIME type against the list of RDF formats that can be written. |
static void |
RDFFormat.register(RDFFormat rdfFormat)
Registers the specified RDF file format. |
| Uses of RDFFormat in org.openrdf.rio.n3 |
|---|
| Methods in org.openrdf.rio.n3 that return RDFFormat | |
|---|---|
RDFFormat |
N3WriterFactory.getRDFFormat()
Returns N3. |
RDFFormat |
N3Writer.getRDFFormat()
|
RDFFormat |
N3ParserFactory.getRDFFormat()
Returns N3. |
| Uses of RDFFormat in org.openrdf.rio.ntriples |
|---|
| Methods in org.openrdf.rio.ntriples that return RDFFormat | |
|---|---|
RDFFormat |
NTriplesWriterFactory.getRDFFormat()
Returns NTRIPLES. |
RDFFormat |
NTriplesWriter.getRDFFormat()
|
RDFFormat |
NTriplesParserFactory.getRDFFormat()
Returns NTRIPLES. |
RDFFormat |
NTriplesParser.getRDFFormat()
|
| Uses of RDFFormat in org.openrdf.rio.rdfxml |
|---|
| Methods in org.openrdf.rio.rdfxml that return RDFFormat | |
|---|---|
RDFFormat |
RDFXMLWriterFactory.getRDFFormat()
Returns RDFXML. |
RDFFormat |
RDFXMLWriter.getRDFFormat()
|
RDFFormat |
RDFXMLParserFactory.getRDFFormat()
Returns the RDF format for this factory. |
RDFFormat |
RDFXMLParser.getRDFFormat()
|
| Uses of RDFFormat in org.openrdf.rio.rdfxml.util |
|---|
| Methods in org.openrdf.rio.rdfxml.util that return RDFFormat | |
|---|---|
RDFFormat |
RDFXMLPrettyWriterFactory.getRDFFormat()
Returns RDFXML. |
| Uses of RDFFormat in org.openrdf.rio.trig |
|---|
| Methods in org.openrdf.rio.trig that return RDFFormat | |
|---|---|
RDFFormat |
TriGWriterFactory.getRDFFormat()
Returns TRIG. |
RDFFormat |
TriGWriter.getRDFFormat()
|
RDFFormat |
TriGParserFactory.getRDFFormat()
Returns TRIG. |
RDFFormat |
TriGParser.getRDFFormat()
|
| Uses of RDFFormat in org.openrdf.rio.trix |
|---|
| Methods in org.openrdf.rio.trix that return RDFFormat | |
|---|---|
RDFFormat |
TriXWriterFactory.getRDFFormat()
Returns TRIX. |
RDFFormat |
TriXWriter.getRDFFormat()
|
RDFFormat |
TriXParserFactory.getRDFFormat()
Returns TRIX. |
RDFFormat |
TriXParser.getRDFFormat()
|
| Uses of RDFFormat in org.openrdf.rio.turtle |
|---|
| Methods in org.openrdf.rio.turtle that return RDFFormat | |
|---|---|
RDFFormat |
TurtleWriterFactory.getRDFFormat()
Returns TURTLE. |
RDFFormat |
TurtleWriter.getRDFFormat()
|
RDFFormat |
TurtleParserFactory.getRDFFormat()
Returns TURTLE. |
RDFFormat |
TurtleParser.getRDFFormat()
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||