Class: Bio::DAS::ENTRY_POINT
Direct Known Subclasses
Instance Attribute Summary collapse
-
#href ⇒ Object
Returns the value of attribute href.
-
#segments ⇒ Object
readonly
Returns the value of attribute segments.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize ⇒ ENTRY_POINT
constructor
A new instance of ENTRY_POINT.
Constructor Details
#initialize ⇒ ENTRY_POINT
Returns a new instance of ENTRY_POINT.
328 329 330 |
# File 'lib/bio/io/das.rb', line 328 def initialize @segments = Array.new end |
Instance Attribute Details
#href ⇒ Object
Returns the value of attribute href.
332 333 334 |
# File 'lib/bio/io/das.rb', line 332 def href @href end |
#segments ⇒ Object (readonly)
Returns the value of attribute segments.
331 332 333 |
# File 'lib/bio/io/das.rb', line 331 def segments @segments end |
#version ⇒ Object
Returns the value of attribute version.
332 333 334 |
# File 'lib/bio/io/das.rb', line 332 def version @version end |
Instance Method Details
#each ⇒ Object
334 335 336 337 338 |
# File 'lib/bio/io/das.rb', line 334 def each @segments.each do |x| yield x end end |