Class: RDF::Statement
- Inherits:
-
Object
- Object
- RDF::Statement
- Defined in:
- lib/rdf/n3/refinements.rb
Overview
Refinements on RDF::Statement
Instance Method Summary collapse
-
#evaluate(bindings, formulae:, **options) ⇒ RDF::Statement
As a statement is constant, this returns itself.
-
#invalid? ⇒ Boolean
Refines
invalid?
to allow literal subjects and BNode predicates. -
#valid? ⇒ Boolean
Refines
valid?
to allow literal subjects and BNode predicates. -
#validate! ⇒ RDF::Value
Refines
validate!
to allow literal subjects and BNode predicates.
Instance Method Details
#evaluate(bindings, formulae:, **options) ⇒ RDF::Statement
As a statement is constant, this returns itself.
25 |
# File 'lib/rdf/n3/refinements.rb', line 25 def evaluate(bindings, formulae:, **); end |
#invalid? ⇒ Boolean
Refines invalid?
to allow literal subjects and BNode predicates.
9 |
# File 'lib/rdf/n3/refinements.rb', line 9 def invalid?; end |
#valid? ⇒ Boolean
Refines valid?
to allow literal subjects and BNode predicates.
5 |
# File 'lib/rdf/n3/refinements.rb', line 5 def valid?; end |
#validate! ⇒ RDF::Value
Refines validate!
to allow literal subjects and BNode predicates.
14 |
# File 'lib/rdf/n3/refinements.rb', line 14 def validate!; end |