Class: SpectrumAnalyzer::Domain
- Inherits:
-
Object
- Object
- SpectrumAnalyzer::Domain
- Defined in:
- lib/spectrum-analyzer/criteria/domain.rb
Instance Attribute Summary collapse
-
#contains_frequency_range ⇒ Object
Returns the value of attribute contains_frequency_range.
-
#raw_values ⇒ Object
Returns the value of attribute raw_values.
-
#values ⇒ Object
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize ⇒ Domain
constructor
A new instance of Domain.
Constructor Details
#initialize ⇒ Domain
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_range ⇒ Object
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_values ⇒ Object
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 |
#values ⇒ Object
Returns the value of attribute values.
3 4 5 |
# File 'lib/spectrum-analyzer/criteria/domain.rb', line 3 def values @values end |