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 classITER_CSVIterator 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.classITER_CSVHeadersIterator 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 IteratorFunctionIteratorPlan. 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 classITER_GeoJSONIterator 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 classIteratorFunctionBaseThe base implementation of theIteratorFunctioninterface.classIteratorFunctionBase0Support for a iterator function of zero arguments.classIteratorFunctionBase1Support for a iterator function of one argument.classIteratorFunctionBase2Support for a iterator function of two arguments.classIteratorFunctionBase3Support for a iterator function of three arguments.classIteratorFunctionBase4Support for a iterator function of four arguments.classIteratorFunctionBase5Support for a iterator function of five arguments.classIteratorStreamFunctionBaseThe base implementation of theIteratorFunctioninterface.classIteratorStreamFunctionBase0Support for a iterator function of one argument.classIteratorStreamFunctionBase1Support for a iterator function of one argument.classIteratorStreamFunctionBase2Support for a iterator function of two arguments.classIteratorStreamFunctionBase3Support for a iterator function of three arguments.classIteratorStreamFunctionBase4Support for a iterator function of four arguments.classIteratorStreamFunctionBase5Support for a iterator function of two arguments.classSPARQLExtIteratorFunctionIterator 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 IteratorFunctionIteratorFunctionFactory. 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 classITER_Call_SelectIterator 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.classITER_DefaultGraphNamespacesIterator function iter:defaultGraphNamespaces iterates over the prefix declarations of the default graph on which the query is executed.classITER_forIterator 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.classITER_HTTPGetIterator function iter:HTTPGet binds the responses of regular GET operations to a HTTP(s) URL.classITER_regexIterator function iter:regex iterates over the input subsequences captured by the ith groups of every regex matches.classITER_SplitIterator 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 classITER_CBORIterator function iter:CBOR takes as input a CBOR document, decodes it, and extracts a list of sub-JSON documents according to a JSONPath expression.classITER_JSONListKeysIterator function iter:JSONListKeys iterates over the keys of a JSON object.classITER_JSONPathIterator function iter:JSONPath extracts a list of sub-JSON documents of a JSON document, according to a JSONPath expression.classITER_JSONSurferIterator 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 classITER_MQTTSubscribeIterator 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 classITER_SQLIterator 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 classITER_WebSocketIterator 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 classITER_CSSPathIterator function iter:CSSPath extracts parts of a HTML document, using CSS-Selector-like queries.classITER_XPathIterator function iter:XPath extracts parts of a XML document, using XPath queries. 
 -