This is an automated email from the ASF dual-hosted git repository.
claude pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena.git
The following commit(s) were added to refs/heads/master by this push:
new 6477505 Updated readme in examples (#660)
6477505 is described below
commit 6477505fa66cd0e9f4b99ec769d210fab9fc788d
Author: Claude Warren <[email protected]>
AuthorDate: Sat Dec 21 13:29:42 2019 +0000
Updated readme in examples (#660)
* Added addWhere( AbstractQueryBuilder )
* simplified code
* updated javadoc
* removed unused imports
* updated javadoc
* Added addPrefixes(PrefixMapping prefixes)
* updated javadoc
* Added appPrefixes(PrefixMapping) test + cleaned up tests
* changed to follow jena version
* Example of StreamRDF to RDFConnection
* added addInsertQuads() and addDeleteQuads()
* updated javadocs
* Removed unused imports
* Added license.
* reorganized POM file
* added streaming to readme
---
jena-examples/README.md | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/jena-examples/README.md b/jena-examples/README.md
index a25073b..fcfb03a 100644
--- a/jena-examples/README.md
+++ b/jena-examples/README.md
@@ -1,7 +1,6 @@
# Jena Examples
-A collection of complete, runnable Jena examples to illustrate various
-aspects of programming using RDF with Jena.
+A collection of complete, runnable Jena examples to illustrate various aspects
of programming using RDF with Jena.
## Cheese ontology examples
@@ -25,3 +24,7 @@ examples use that ontology as an illustration.
Using SPARQL to query the class expressions in the Pizza ontology without
relying on
RDF inference.
+
+## Streaming
+
+Example of how to use a StreamRDF to write to an RDFConnection.