Class DateCast
- java.lang.Object
-
- org.eclipse.rdf4j.query.algebra.evaluation.function.xsd.CastFunction
-
- org.eclipse.rdf4j.query.algebra.evaluation.function.xsd.DateCast
-
- All Implemented Interfaces:
Function
public class DateCast extends CastFunction
AFunction
that tries to cast its argument to an xsd:date.
-
-
Constructor Summary
Constructors Constructor Description DateCast()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Literal
convert(ValueFactory vf, Value value)
Convert the supplied value to a literal of the function output datatype.protected IRI
getXsdDatatype()
Get the specific XML Schema datatype which this function returns.protected boolean
isValidForDatatype(String lexicalValue)
Verifies that the supplied lexical value is valid for the datatype.-
Methods inherited from class org.eclipse.rdf4j.query.algebra.evaluation.function.xsd.CastFunction
evaluate, getURI, getXsdName, typeError
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.rdf4j.query.algebra.evaluation.function.Function
evaluate, mustReturnDifferentResult
-
-
-
-
Method Detail
-
getXsdDatatype
protected IRI getXsdDatatype()
Description copied from class:CastFunction
Get the specific XML Schema datatype which this function returns.- Specified by:
getXsdDatatype
in classCastFunction
- Returns:
- an XML Schema datatype IRI
-
isValidForDatatype
protected boolean isValidForDatatype(String lexicalValue)
Description copied from class:CastFunction
Verifies that the supplied lexical value is valid for the datatype.- Specified by:
isValidForDatatype
in classCastFunction
- Parameters:
lexicalValue
- a lexical value- Returns:
- true if the lexical value is valid for the datatype, false otherwise.
-
convert
protected Literal convert(ValueFactory vf, Value value) throws ValueExprEvaluationException
Description copied from class:CastFunction
Convert the supplied value to a literal of the function output datatype.- Specified by:
convert
in classCastFunction
- Parameters:
vf
- the valueFactory to usevalue
- a value that is not a string-typed literal, and not a literal of the same datatype as the function output datatype.- Returns:
- a literal value of the function output datatype
- Throws:
ValueExprEvaluationException
- if an error occurs in conversion.
-
-