Method: VORuby::VOTables::VOTable::Type::ValuesType#initialize
- Defined in:
- lib/voruby/votables/types.rb
#initialize(txt = nil) ⇒ ValuesType
- txt:
-
The type of values. Choices: legal, actual.
331 332 333 334 335 336 337 338 |
# File 'lib/voruby/votables/types.rb', line 331 def initialize(txt=nil) if txt and @@types.include?(txt) @value = txt else raise "Values type '#{txt}' is not valid. Use one of: " + @@types.join(', ') end end |