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
Fields -
Constructor Summary
Constructors -
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:
- Constant Field Values
-
-
Constructor Details
-
ExistingPalindromeFunction
public ExistingPalindromeFunction()
-
-
Method Details
-
getURI
return the URI 'http://example.org/custom-function/existingPalindrome' as a String -
evaluate
public Value evaluate(TripleSource tripleSource, Value... args) throws ValueExprEvaluationExceptionExecutes 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
public Value evaluate(ValueFactory valueFactory, Value... args) throws ValueExprEvaluationExceptionDescription 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
-