Class ResultSetReaderCSV
- java.lang.Object
-
- org.apache.jena.riot.resultset.rw.ResultSetReaderCSV
-
- All Implemented Interfaces:
ResultSetReader
public class ResultSetReaderCSV extends java.lang.Object implements ResultSetReader
-
-
Field Summary
Fields Modifier and Type Field Description static ResultSetReaderFactoryfactory
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResultSetread(java.io.InputStream in, Context context)Read from anInputStreamand produce aResultSet.SPARQLResultreadAny(java.io.InputStream in, Context context)Read from anInputStreamand produce aSPARQLResult.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.jena.riot.resultset.ResultSetReader
read
-
-
-
-
Field Detail
-
factory
public static final ResultSetReaderFactory factory
-
-
Method Detail
-
readAny
public SPARQLResult readAny(java.io.InputStream in, Context context)
Description copied from interface:ResultSetReaderRead from anInputStreamand produce aSPARQLResult. Note that return result may stream and so the input stream may be read while theResultSetis used. SeeResultSetReader.read(InputStream, Context)for more details- Specified by:
readAnyin interfaceResultSetReader- Parameters:
in- InputStream to read from.- Returns:
- SPARQLResult
-
read
public ResultSet read(java.io.InputStream in, Context context)
Description copied from interface:ResultSetReaderRead from anInputStreamand produce aResultSet. Note that return result may stream and so the input stream may be read while theResultSetis used. SeeResultSetFactory.copyResults(ResultSet)for a ResultSet that is detached from theInputStream.- Specified by:
readin interfaceResultSetReader- Parameters:
in- InputStream to read from.- Returns:
- ResultSet
-
-