Package | Description |
---|---|
com.franz.agraph.http |
AllegroGraph Java client HTTP layer for the
AllegroGraph HTTP Protocol, used by
com.franz.agraph.repository
and com.franz.agraph.jena . |
com.franz.agraph.http.handler |
AllegroGraph Java client HTTP layer response handlers for the
AllegroGraph HTTP Protocol in support of
com.franz.agraph.http . |
Modifier and Type | Method and Description |
---|---|
void |
AGHTTPClient.delete(String url,
org.apache.http.Header[] headers,
org.apache.http.NameValuePair[] params,
AGResponseHandler handler) |
void |
AGHttpRepoClient.evalFreetextQuery(String pattern,
String expression,
String index,
boolean sorted,
int limit,
int offset,
AGResponseHandler handler) |
void |
AGHTTPClient.get(String url,
org.apache.http.Header[] headers,
org.apache.http.NameValuePair[] params,
AGResponseHandler handler) |
void |
AGHttpRepoClient.getGeoBox(String type_uri,
String predicate_uri,
float xmin,
float xmax,
float ymin,
float ymax,
int limit,
boolean infer,
AGResponseHandler handler) |
void |
AGHttpRepoClient.getGeoCircle(String type_uri,
String predicate_uri,
float x,
float y,
float radius,
int limit,
boolean infer,
AGResponseHandler handler) |
void |
AGHttpRepoClient.getGeoHaversine(String type_uri,
String predicate_uri,
float lat,
float lon,
float radius,
String unit,
int limit,
boolean infer,
AGResponseHandler handler) |
void |
AGHttpRepoClient.getGeoPolygon(String type_uri,
String predicate_uri,
String polygon,
int limit,
boolean infer,
AGResponseHandler handler) |
void |
AGHttpRepoClient.getStatements(AGResponseHandler handler,
String... ids) |
void |
AGHttpRepoClient.getStatements(Resource subj,
IRI pred,
Value obj,
String includeInferred,
AGResponseHandler handler,
Resource... contexts) |
void |
AGHttpRepoClient.getStatementsCountLimit(int limit,
Resource subj,
IRI pred,
Value obj,
String includeInferred,
AGResponseHandler handler,
Resource... contexts)
Retrieves the count of statements matching the provided
subject, predicate, object and contexts, but does not read more
than a specified number of statements; feeds the result to the
response handler.
|
void |
AGHttpRepoClient.getStatementsLimit(int limit,
Resource subj,
IRI pred,
Value obj,
String includeInferred,
AGResponseHandler handler,
Resource... contexts)
Retrieves up to a specified number of statements matching the
provided subject, predicate, object and contexts, and feeds the
result to the response handler.
|
void |
AGHTTPClient.post(String url,
org.apache.http.Header[] headers,
org.apache.http.NameValuePair[] params,
org.apache.http.HttpEntity requestEntity,
AGResponseHandler handler) |
void |
AGHTTPClient.put(String url,
org.apache.http.Header[] headers,
org.apache.http.NameValuePair[] params,
org.apache.http.HttpEntity requestEntity,
AGResponseHandler handler) |
void |
AGHttpRepoClient.query(AGQuery q,
boolean analyzeOnly,
AGResponseHandler handler) |
Modifier and Type | Class and Description |
---|---|
class |
AGBooleanHandler |
class |
AGBQRHandler |
class |
AGDownloadHandler
A response handler that writes the returned body to a file.
|
class |
AGErrorHandler |
class |
AGJSONArrayHandler |
class |
AGJSONHandler |
class |
AGLongHandler |
class |
AGRawStreamer
A handler that allows access to raw response stream.
|
class |
AGRDFHandler |
class |
AGStringHandler |
class |
AGTQRHandler |
class |
AGTQRJSONStreamer
Similar to
SPARQLResultsXMLParser
but uses rdf4j-like JSON parsing instead of SAXParser so the results
streaming in the http response can be processed in a
TupleQueryResult pulling from the JSON stream. |
class |
AGTQRStreamer |
class |
AGTQRTSVStreamer
Similar to
SPARQLResultsXMLParser
but uses rdf4j-like TSV parsing instead of SAXParser so the results
streaming in the http response can be processed in a
TupleQueryResult pulling from the TSV stream. |
class |
AGTQRXMLStreamer
Similar to
SPARQLResultsXMLParser
but uses XMLStreamReader instead of SAXParser so the results
streaming in the http response can be processed in a
TupleQueryResult pulling from the stream. |
Copyright © 2022 Franz Inc.. All rights reserved.