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
A
Function that tries to cast its argument to an
xsd:date.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static voidaddZeroIfNeeded(int value, StringBuilder builder) protected Literalconvert(ValueFactory vf, Value value) Convert the supplied value to a literal of the function output datatype.protected IRIGet the specific XML Schema datatype which this function returns.protected booleanisValidForDatatype(String lexicalValue) Verifies that the supplied lexical value is valid for the datatype.Methods inherited from class CastFunction
evaluate, getURI, getXsdName, typeErrorMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Function
evaluate, mustReturnDifferentResult
-
Field Details
-
ZERO
- See Also:
-
-
Constructor Details
-
DateCast
public DateCast()
-
-
Method Details
-
getXsdDatatype
Description copied from class:CastFunctionGet the specific XML Schema datatype which this function returns.- Specified by:
getXsdDatatypein classCastFunction- Returns:
- an XML Schema datatype IRI
-
isValidForDatatype
Description copied from class:CastFunctionVerifies that the supplied lexical value is valid for the datatype.- Specified by:
isValidForDatatypein classCastFunction- Parameters:
lexicalValue- a lexical value- Returns:
- true if the lexical value is valid for the datatype, false otherwise.
-
convert
Description copied from class:CastFunctionConvert the supplied value to a literal of the function output datatype.- Specified by:
convertin 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.
-
addZeroIfNeeded
-