Uses of Class
fr.mines_stetienne.ci.sparql_generate.iterator.IteratorStreamFunctionBase
-
Packages that use IteratorStreamFunctionBase Package Description fr.mines_stetienne.ci.sparql_generate.csv fr.mines_stetienne.ci.sparql_generate.geojson fr.mines_stetienne.ci.sparql_generate.iterator Interfaces and abstract classes for iterator functions, which are similar to binding functions, except they return a list of list of RDF terms or SPARQL variables.fr.mines_stetienne.ci.sparql_generate.iterator.library Defines common iterator functions for different data formats.fr.mines_stetienne.ci.sparql_generate.json fr.mines_stetienne.ci.sparql_generate.mqtt fr.mines_stetienne.ci.sparql_generate.sql fr.mines_stetienne.ci.sparql_generate.ws fr.mines_stetienne.ci.sparql_generate.xml -
-
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.csv
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.csv Modifier and Type Class Description class
ITER_CSV
Iterator function iter:CSV batch-processes CSV documents, potentially having some custom CSV dialect, and iteratively binds the content of a selection of cells to the list of provided variables.class
ITER_CSVHeaders
Iterator function iter:CSVHeaders iterates over the cells in the header row. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.geojson
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.geojson Modifier and Type Class Description class
ITER_GeoJSON
Iterator function iter:GeoJSON iterates over the features collection of a GeoJSON document, and outputs (1) the Geometry as a wktLiteral, and (2) the Features as a JSON Literal -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.iterator
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.iterator Modifier and Type Class Description class
IteratorFunctionBase
The base implementation of theIteratorFunction
interface.class
IteratorFunctionBase0
Support for a iterator function of zero arguments.class
IteratorFunctionBase1
Support for a iterator function of one argument.class
IteratorFunctionBase2
Support for a iterator function of two arguments.class
IteratorFunctionBase3
Support for a iterator function of three arguments.class
IteratorFunctionBase4
Support for a iterator function of four arguments.class
IteratorFunctionBase5
Support for a iterator function of five arguments.class
IteratorStreamFunctionBase0
Support for a iterator function of one argument.class
IteratorStreamFunctionBase1
Support for a iterator function of one argument.class
IteratorStreamFunctionBase2
Support for a iterator function of two arguments.class
IteratorStreamFunctionBase3
Support for a iterator function of three arguments.class
IteratorStreamFunctionBase4
Support for a iterator function of four arguments.class
IteratorStreamFunctionBase5
Support for a iterator function of two arguments.class
SPARQLExtIteratorFunction
Iterator function iter:call-select takes as input a IRI to a SPARQL-Select document, runs it on the current Dataset, and binds the given variables to the output of the select query, in order. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.iterator.library
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.iterator.library Modifier and Type Class Description class
ITER_Call_Select
Iterator function iter:call-select takes as input a IRI to a SPARQL-Select document, runs it on the current Dataset, and binds the given variables to the output of the select query, in order.class
ITER_DefaultGraphNamespaces
Iterator function iter:defaultGraphNamespaces iterates over the prefix declarations of the default graph on which the query is executed.class
ITER_for
Iterator function iter:for iterates over numeric values that start at the first argument, increment by the second argument (positive or negatice), and stops whenever it goes beyond the third argument.class
ITER_HTTPGet
Iterator function iter:HTTPGet binds the responses of regular GET operations to a HTTP(s) URL.class
ITER_regex
Iterator function iter:regex iterates over the input subsequences captured by the ith groups of every regex matches.class
ITER_Split
Iterator function iter:Split iterates over the array of strings resulting from spliting the input string around matches of the given regular expression. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.json
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.json Modifier and Type Class Description class
ITER_CBOR
Iterator function iter:CBOR takes as input a CBOR document, decodes it, and extracts a list of sub-JSON documents according to a JSONPath expression.class
ITER_JSONListKeys
Iterator function iter:JSONListKeys iterates over the keys of a JSON object.class
ITER_JSONPath
Iterator function iter:JSONPath extracts a list of sub-JSON documents of a JSON document, according to a JSONPath expression.class
ITER_JSONSurfer
Iterator function iter:JSONSurfer extracts a list of sub-JSON documents of a JSON document, according to a forward-only JSONPath expression. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.mqtt
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.mqtt Modifier and Type Class Description class
ITER_MQTTSubscribe
Iterator function iter:MQTTSubscribe connects to a MQTT server, subscribes to some topics, and issues bindings for the topic (first variable) and the message (second variable) when they are received. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.sql
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.sql Modifier and Type Class Description class
ITER_SQL
Iterator function SQL issues a SQL query to a database. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.ws
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.ws Modifier and Type Class Description class
ITER_WebSocket
Iterator function iter:WebSocket connects to a WebSocket server, and iteratively binds the messages that are received. -
Uses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.xml
Subclasses of IteratorStreamFunctionBase in fr.mines_stetienne.ci.sparql_generate.xml Modifier and Type Class Description class
ITER_CSSPath
Iterator function iter:CSSPath extracts parts of a HTML document, using CSS-Selector-like queries.class
ITER_XPath
Iterator function iter:XPath extracts parts of a XML document, using XPath queries.
-