Return-Path: X-Original-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Delivered-To: apmail-commonsrdf-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3AB151782E for ; Mon, 27 Apr 2015 16:11:56 +0000 (UTC) Received: (qmail 96337 invoked by uid 500); 27 Apr 2015 16:11:56 -0000 Delivered-To: apmail-commonsrdf-commits-archive@commonsrdf.apache.org Received: (qmail 96310 invoked by uid 500); 27 Apr 2015 16:11:56 -0000 Mailing-List: contact commits-help@commonsrdf.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commonsrdf.incubator.apache.org Delivered-To: mailing list commits@commonsrdf.incubator.apache.org Received: (qmail 96301 invoked by uid 99); 27 Apr 2015 16:11:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2015 16:11:56 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.164.171.186] (HELO mx1-us-east.apache.org) (54.164.171.186) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2015 16:11:51 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 70A2443C96 for ; Mon, 27 Apr 2015 16:11:30 +0000 (UTC) Received: (qmail 95688 invoked by uid 99); 27 Apr 2015 16:11:29 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Apr 2015 16:11:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B0B39E179B; Mon, 27 Apr 2015 16:11:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: stain@apache.org To: commits@commonsrdf.incubator.apache.org Date: Mon, 27 Apr 2015 16:11:29 -0000 Message-Id: <0348353409144f329993aa0ee2389e4c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] incubator-commonsrdf git commit: User guide: Table of Content (manually! :-/ ) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-commonsrdf Updated Branches: refs/heads/master f175f60b0 -> d4f483d5f User guide: Table of Content (manually! :-/ ) Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/33c0c432 Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/33c0c432 Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/33c0c432 Branch: refs/heads/master Commit: 33c0c43278d4d085958295a6885f727e31089464 Parents: f175f60 Author: Stian Soiland-Reyes Authored: Mon Apr 27 16:47:47 2015 +0100 Committer: Stian Soiland-Reyes Committed: Mon Apr 27 16:47:47 2015 +0100 ---------------------------------------------------------------------- src/site/markdown/userguide.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/33c0c432/src/site/markdown/userguide.md ---------------------------------------------------------------------- diff --git a/src/site/markdown/userguide.md b/src/site/markdown/userguide.md index c052b95..4c805c7 100644 --- a/src/site/markdown/userguide.md +++ b/src/site/markdown/userguide.md @@ -4,6 +4,24 @@ This page shows some examples of a client using the Commons RDF API. It was last updated for version `0.1-incubating-SNAPSHOT` of the Commons RDF [API](apidocs/). +* [Using Commons RDF from Maven](#Using_Commons_RDF_from_Maven) +* [Creating Commons RDF instances](#Creating_RDFTerm_instances) +* [Graph](#Graph) + * [Adding triples](#Adding_triples) + * [Finding triples](#Finding_triples) + * [Size](#Size) + * [Iterating over triples](#Iterating_over_triples) + * [Stream of triples](#Stream_of_triples) + * [Removing triples](#Removing_triples) +* [RDF terms](#RDF_terms) + * [IRI](#IRI) + * [Blank node](#Blank_node) + * [Blank node reference](#Blank_node_reference) + * [Literal](#Literal) + * [Types](#Types) +* [Triple](#Triple) + + ## Using Commons RDF from Maven To use Commons RDF API from an @@ -60,7 +78,7 @@ _simple_ implementation, add to your ``: ``` -## Creating RDFTerm instances +## Creating Commons RDF instances To create instances of Commons RDF interfaces like [`Graph`](apidocs/org/apache/commons/rdf/api/Graph.html) and @@ -269,7 +287,7 @@ System.out.println(graph.contains(null, null, null)); > false -## IRI, Literal, BlankNode +## RDF terms The core RDF terms are arranged in this class hierarchy: