Class: Linkage::Expectation

Inherits:
Object
  • Object
show all
Defined in:
lib/linkage/expectation.rb

Overview

The Expectation class contains information about how two datasets should be linked.

Instance Method Summary collapse

Instance Method Details

#apply_to(*args) ⇒ Object

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/linkage/expectation.rb', line 9

def apply_to(*args)
  raise NotImplementedError
end

#decollation_needed?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/linkage/expectation.rb', line 13

def decollation_needed?
  false
end

#kindObject

Raises:

  • (NotImplementedError)


5
6
7
# File 'lib/linkage/expectation.rb', line 5

def kind
  raise NotImplementedError
end