Class: ShEx::Algebra::Value
- Inherits:
-
Operator::Unary
- Object
- Operator
- Operator::Unary
- ShEx::Algebra::Value
- Defined in:
- lib/shex/algebra/value.rb
Constant Summary collapse
- NAME =
:value
Constants inherited from Operator::Unary
Constants inherited from Operator
Instance Attribute Summary
Attributes inherited from Operator
#id, #logger, #operands, #options, #schema
Instance Method Summary collapse
-
#match?(value, depth: 0) ⇒ Boolean
For a node n and constraint value v, nodeSatisfies(n, v) if n matches some valueSetValue vsv in v.
Methods inherited from Operator::Unary
Methods inherited from Operator
#base_uri, #closed?, #dup, #each_descendant, #eql?, #expression, #expressions, #find, #focus, #focus=, from_shexj, #initialize, #inspect, #iri, iri, #json_type, #matched, #matched=, #message, #message=, #not_matched, #not_satisfied, #operand, #parent, #parent=, #references, #satisfied, #satisfied=, #satisfy, #semact?, #semantic_actions, #serialize_value, #status, #structure_error, #to_h, #to_json, #to_sxp, #to_sxp_bin, #triple_expression?, #unmatched, #unmatched=, #unsatisfied, #unsatisfied=, #validate!, #value, value
Constructor Details
This class inherits a constructor from ShEx::Algebra::Operator::Unary
Instance Method Details
#match?(value, depth: 0) ⇒ Boolean
For a node n and constraint value v, nodeSatisfies(n, v) if n matches some valueSetValue vsv in v. A term matches a valueSetValue if:
-
vsv is an objectValue and n = vsv.
-
vsv is a Stem with stem st and nodeIn(n, st).
-
vsv is a StemRange with stem st and exclusions excls and nodeIn(n, st) and there is no x in excls such that nodeIn(n, excl).
-
vsv is a Wildcard with exclusions excls and there is no x in excls such that nodeIn(n, excl).
13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/shex/algebra/value.rb', line 13 def match?(value, depth: 0) status "", depth: depth if case expr = operands.first when RDF::Value then value.eql?(expr) when Language, Stem, StemRange then expr.match?(value, depth: depth + 1) else false end status "matched #{value}", depth: depth true else status "not matched #{value}", depth: depth false end end |