Package com.complexible.stardog.api
Interface PathQuery
-
- All Superinterfaces:
Query<PathQueryResult>,ReadQuery<PathQueryResult>
public interface PathQuery extends ReadQuery<PathQueryResult>
- Since:
- 5.1
- Version:
- 6.0
- Author:
- Evren Sirin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PathQuerydataset(Dataset theDataset)Specify the dataset this query will be executed against.PathQuerylimit(long theLimit)Set the maximum number of results that can be returned by this query.PathQueryoffset(long theOffset)Set the offset of the query results.PathQueryparameter(java.lang.String theName, boolean theValue)Set the parameter to the xsd:boolean valuePathQueryparameter(java.lang.String theName, byte theValue)Set the parameter to the xsd:byte valuePathQueryparameter(java.lang.String theName, double theValue)Set the parameter to the xsd:double valuePathQueryparameter(java.lang.String theName, float theValue)Set the parameter to the xsd:float valuePathQueryparameter(java.lang.String theName, int theValue)Set the parameter to the xsd:int valuePathQueryparameter(java.lang.String theName, long theValue)Set the parameter to the xsd:long valuePathQueryparameter(java.lang.String theName, short theValue)Set the parameter to the xsd:short valuePathQueryparameter(java.lang.String theName, Value theValue)Set the value of the parameterPathQueryparameter(java.lang.String theName, java.lang.Object theObj)Set the parameter to the specified value.PathQueryparameter(java.lang.String theName, java.lang.String theValue)Set the parameter to the xsd:string valuePathQueryparameter(java.lang.String theName, java.net.URI theURI)Set the parameter to the xsd:URI valuePathQueryparameter(java.lang.String theName, java.util.Date theValue)Set the parameter to the xsd:date valuePathQueryparameter(java.lang.String theName, java.util.GregorianCalendar theValue)Set the parameter to the xsd:dateTime valuePathQueryreasoning(boolean theReasoningType){Specify whether you would like the query to be executed with reasoning.PathQuerytimeout(long theTimeout)Set the timeout for query execution.
-
-
-
Method Detail
-
dataset
PathQuery dataset(Dataset theDataset)
Specify the dataset this query will be executed against. This defines the active graph for the query and will override anything specified within the query. UseDatasets.NO_DATASETremove the dataset.- Specified by:
datasetin interfaceQuery<PathQueryResult>- Specified by:
datasetin interfaceReadQuery<PathQueryResult>- Parameters:
theDataset- the active graph dataset- Returns:
- this query
- See Also:
Datasets
-
offset
PathQuery offset(long theOffset)
Set the offset of the query results. Similar toReadQuery.limit()this will override an offset in the query, and you can useReadQuery.NO_OFFSETto remove an offset specified on the query, but not in the query string.- Specified by:
offsetin interfaceReadQuery<PathQueryResult>- Parameters:
theOffset- the offset- Returns:
- this query
-
limit
PathQuery limit(long theLimit)
Set the maximum number of results that can be returned by this query. Setting the limit on the query will override any limit specified in the original query string, however, setting the limit toReadQuery.NO_LIMITwill not remove the limit if it is specified in the query, but you can use it to remove a limit that has already been set if there was not a limit specified in the query originally.- Specified by:
limitin interfaceReadQuery<PathQueryResult>- Parameters:
theLimit- the new limit- Returns:
- this query
-
timeout
PathQuery timeout(long theTimeout)
Set the timeout for query execution.- Specified by:
timeoutin interfaceQuery<PathQueryResult>- Parameters:
theTimeout- the timeout in ms. A zero or negative value will be interpreted as no timeout- Returns:
- this query
-
reasoning
PathQuery reasoning(boolean theReasoningType)
{Specify whether you would like the query to be executed with reasoning. For update queries, the reasoning flag only affects the evaluation of WHERE clauses in DELETE/INSERT queries.
You can only modify the reasoning flag of a query outside of a transaction. If querying within a transaction you can only use the
reasoning flag associated with the connection.If the reasoning schema is explicitly set via the
}Query.schema(String)function beforehand then callingreasoning(true)will have no effect. If the schema is not set then callingreasoning(true)is equivalent to setting the schema to thedefault schema. Callingreasoning(false)is always equivalent to setting the schema to thenull schema.- Specified by:
reasoningin interfaceQuery<PathQueryResult>- Parameters:
theReasoningType- the reasoning flag- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, Value theValue)
Set the value of the parameter- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, int theValue)
Set the parameter to the xsd:int value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, long theValue)
Set the parameter to the xsd:long value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, float theValue)
Set the parameter to the xsd:float value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, double theValue)
Set the parameter to the xsd:double value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, short theValue)
Set the parameter to the xsd:short value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, boolean theValue)
Set the parameter to the xsd:boolean value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, byte theValue)
Set the parameter to the xsd:byte value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, java.lang.String theValue)
Set the parameter to the xsd:string value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, java.util.Date theValue)
Set the parameter to the xsd:date value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, java.util.GregorianCalendar theValue)
Set the parameter to the xsd:dateTime value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheValue- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, java.net.URI theURI)
Set the parameter to the xsd:URI value- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter to settheURI- the value of the parameter- Returns:
- this query
-
parameter
PathQuery parameter(java.lang.String theName, java.lang.Object theObj)
Set the parameter to the specified value. Convenience method which will delegate to one of the other parameter(...) methods- Specified by:
parameterin interfaceQuery<PathQueryResult>- Parameters:
theName- the parameter nametheObj- the param value- Returns:
- this query
-
-