Uses of Interface
fr.mines_stetienne.ci.sparql_generate.iterator.IteratorFunction
-
Packages that use IteratorFunction Package Description fr.mines_stetienne.ci.sparql_generate.csv fr.mines_stetienne.ci.sparql_generate.engine Classes to create and execute generation plans.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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.csv
Classes in fr.mines_stetienne.ci.sparql_generate.csv that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.engine
Methods in fr.mines_stetienne.ci.sparql_generate.engine that return IteratorFunction Modifier and Type Method Description IteratorFunction
IteratorPlan. getIterator(Context context)
-
Uses of IteratorFunction in fr.mines_stetienne.ci.sparql_generate.geojson
Classes in fr.mines_stetienne.ci.sparql_generate.geojson that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.iterator
Classes in fr.mines_stetienne.ci.sparql_generate.iterator that implement IteratorFunction 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
IteratorStreamFunctionBase
The base implementation of theIteratorFunction
interface.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.Methods in fr.mines_stetienne.ci.sparql_generate.iterator that return IteratorFunction Modifier and Type Method Description IteratorFunction
IteratorFunctionFactory. create(String uri)
Create a iterator function with the given URI -
Uses of IteratorFunction in fr.mines_stetienne.ci.sparql_generate.iterator.library
Classes in fr.mines_stetienne.ci.sparql_generate.iterator.library that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.json
Classes in fr.mines_stetienne.ci.sparql_generate.json that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.mqtt
Classes in fr.mines_stetienne.ci.sparql_generate.mqtt that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.sql
Classes in fr.mines_stetienne.ci.sparql_generate.sql that implement IteratorFunction Modifier and Type Class Description class
ITER_SQL
Iterator function SQL issues a SQL query to a database. -
Uses of IteratorFunction in fr.mines_stetienne.ci.sparql_generate.ws
Classes in fr.mines_stetienne.ci.sparql_generate.ws that implement IteratorFunction 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 IteratorFunction in fr.mines_stetienne.ci.sparql_generate.xml
Classes in fr.mines_stetienne.ci.sparql_generate.xml that implement IteratorFunction 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.
-