Module: RDF::Normalize::Base
- Included in:
- Carroll2001, URDNA2015
- Defined in:
- lib/rdf/normalize/base.rb
Overview
Abstract class for pluggable normalization algorithms. Delegates to a default or selected algorithm if instantiated
Instance Attribute Summary collapse
-
#dataset ⇒ Object
readonly
Returns the value of attribute dataset.
Instance Method Summary collapse
-
#each {|statement| ... } ⇒ Object
Enumerates normalized statements.
Instance Attribute Details
#dataset ⇒ Object (readonly)
Returns the value of attribute dataset.
5 6 7 |
# File 'lib/rdf/normalize/base.rb', line 5 def dataset @dataset end |
Instance Method Details
#each {|statement| ... } ⇒ Object
Enumerates normalized statements
11 12 13 |
# File 'lib/rdf/normalize/base.rb', line 11 def each(&block) raise "Not Implemented" end |