class Bio::FlatFile::AutoDetect::RuleSpecial
Special element that is always top or bottom priority.
Public Class Methods
new(name)
click to toggle source
# File lib/bio/io/flatfile/autodetection.rb, line 118 def initialize(name) #super() @name = name end
Public Instance Methods
higher_priority_elements()
click to toggle source
always returns void array
# File lib/bio/io/flatfile/autodetection.rb, line 128 def higher_priority_elements [] end
lower_priority_elements()
click to toggle source
always returns void array
# File lib/bio/io/flatfile/autodetection.rb, line 132 def lower_priority_elements [] end
name=(x)
click to toggle source
modification of @name is inhibited.
# File lib/bio/io/flatfile/autodetection.rb, line 123 def name=(x) raise 'cannot modify name' end