Class: SPARQL::Algebra::Operator::Str
- Inherits:
-
Unary
- Object
- SPARQL::Algebra::Operator
- Unary
- SPARQL::Algebra::Operator::Str
- Includes:
- Evaluatable
- Defined in:
- lib/sparql/algebra/operator/str.rb
Overview
The SPARQL str operator.
Constant Summary
- NAME =
:str
Constants inherited from Unary
Constants inherited from SPARQL::Algebra::Operator
Instance Attribute Summary
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary (collapse)
-
- (RDF::Literal) apply(term)
Returns the string form of the operand.
Methods included from Evaluatable
Methods inherited from Unary
Methods inherited from SPARQL::Algebra::Operator
arity, base_uri, #base_uri, base_uri=, #boolean, #constant?, #eql?, #evaluatable?, evaluate, #executable?, for, #initialize, #inspect, #operand, #optimize, prefixes, #prefixes, prefixes=, #to_sse, #to_sxp, #variable?
Methods included from Expression
cast, #constant?, #evaluate, for, new, open, #optimize, parse, #to_sse, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Unary
Instance Method Details
- (RDF::Literal) apply(term)
Returns the string form of the operand.
26 27 28 29 30 31 32 |
# File 'lib/sparql/algebra/operator/str.rb', line 26 def apply(term) case term when RDF::Literal then RDF::Literal(term.value) when RDF::URI then RDF::Literal(term.to_s) else raise TypeError, "expected an RDF::Literal or RDF::URI, but got #{term.inspect}" end end |