Class ExistingPalindromeFunction
java.lang.Object
org.eclipse.rdf4j.examples.function.ExistingPalindromeFunction
- All Implemented Interfaces:
Function
An example custom SPARQL function that detects palindromes that already exist in the database.
- Author:
- Jeen Broekstra
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionevaluate
(ValueFactory valueFactory, Value... args) Evaluate the function over the supplied input arguments, using the suppliedValueFactory
to produce the result.evaluate
(TripleSource tripleSource, Value... args) Executes the existingPalindrome function.getURI()
return the URI 'http://example.org/custom-function/existingPalindrome' as a String
-
Field Details
-
NAMESPACE
- See Also:
-
-
Constructor Details
-
ExistingPalindromeFunction
public ExistingPalindromeFunction()
-
-
Method Details
-
getURI
return the URI 'http://example.org/custom-function/existingPalindrome' as a String -
evaluate
Executes the existingPalindrome function.- Specified by:
evaluate
in interfaceFunction
- Parameters:
tripleSource
- theTripleSource
used in the query evaluation. This can be used to access the current state of the store.args
- the function input arguments.- Returns:
- A boolean literal representing true if the input argument is a palindrome and exists in the database, false otherwise.
- Throws:
ValueExprEvaluationException
- if more than one argument is supplied or if the supplied argument is not a literal.
-
evaluate
Description copied from interface:Function
Evaluate the function over the supplied input arguments, using the suppliedValueFactory
to produce the result.- Specified by:
evaluate
in interfaceFunction
- Parameters:
valueFactory
- aValueFactory
to use for producing the function result.args
- the function input arguments.- Returns:
- the function result value.
- Throws:
ValueExprEvaluationException
-