class RDF::Normalize::Base

Abstract class for pluggable normalization algorithms. Delegates to a default or selected algorithm if instantiated

Attributes

dataset[R]

Public Instance Methods

each(&block) click to toggle source

Enumerates normalized statements

@yield statement @yieldparam [RDF::Statement] statement

# File lib/rdf/normalize/base.rb, line 11
def each(&block)
  raise "Not Implemented"
end
to_hash() click to toggle source

Returns a map from input blank node identifiers to canonical blank node identifiers.

@return [Hash{String => String}]

# File lib/rdf/normalize/base.rb, line 18
def to_hash
  raise "Not Implemented"
end