Class: YNODK

Inherits:
TranslationTable show all
Defined in:
lib/ccls_engine/translation_table.rb

Overview

YNDK => nil

Class Method Summary collapse

Methods inherited from TranslationTable

[], selector_options, valid_values

Class Method Details

.tableObject



58
59
60
61
62
63
64
65
# File 'lib/ccls_engine/translation_table.rb', line 58

def self.table
	@@table ||= [
		{ :value => 1,   :short => 'yes',   :long => "Yes" },
		{ :value => 2,   :short => 'no',    :long => "No" },
		{ :value => 3,   :short => 'other', :long => "Other" },
		{ :value => 999, :short => 'dk',    :long => "Don't Know" }
	]
end