You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jena.apache.org by "Andy Seaborne (Jira)" <ji...@apache.org> on 2021/04/15 08:44:00 UTC

[jira] [Updated] (JENA-2090) Add Graph.stream() and Graph.stream(s,p,o)

     [ https://issues.apache.org/jira/browse/JENA-2090?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Seaborne updated JENA-2090:
--------------------------------
    Component/s: Core

> Add Graph.stream() and Graph.stream(s,p,o)
> ------------------------------------------
>
>                 Key: JENA-2090
>                 URL: https://issues.apache.org/jira/browse/JENA-2090
>             Project: Apache Jena
>          Issue Type: New Feature
>          Components: Core
>    Affects Versions: Jena 4.0.0
>            Reporter: Andy Seaborne
>            Assignee: Andy Seaborne
>            Priority: Major
>
> {noformat}
> 	default Stream<Triple> stream(Node s, Node p, Node o) {
> 	    return Iter.asStream(find(s,p,o));
> 	}
> 	default Stream<Triple> stream() {
> 	    return stream(Node.ANY, Node.ANY, Node.ANY);
> 	}
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)