Class: SpectrumAnalyzer::Domain

Inherits:
Object
  • Object
show all
Defined in:
lib/spectrum-analyzer/criteria/domain.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeDomain

Returns a new instance of Domain.



5
6
7
8
9
# File 'lib/spectrum-analyzer/criteria/domain.rb', line 5

def initialize()
  @values = []
  @raw_values = []
  @contains_frequency_range = false
end

Instance Attribute Details

#contains_frequency_rangeObject

Returns the value of attribute contains_frequency_range.



3
4
5
# File 'lib/spectrum-analyzer/criteria/domain.rb', line 3

def contains_frequency_range
  @contains_frequency_range
end

#raw_valuesObject

Returns the value of attribute raw_values.



3
4
5
# File 'lib/spectrum-analyzer/criteria/domain.rb', line 3

def raw_values
  @raw_values
end

#valuesObject

Returns the value of attribute values.



3
4
5
# File 'lib/spectrum-analyzer/criteria/domain.rb', line 3

def values
  @values
end