Class: FlatApi::Grade
- Inherits:
-
Object
- Object
- FlatApi::Grade
- Defined in:
- lib/flat_api/models/grade.rb
Constant Summary collapse
- N1 =
"1".freeze
- N2 =
"2".freeze
- N3 =
"3".freeze
- N4 =
"4".freeze
- N5 =
"5".freeze
- N6 =
"6".freeze
- N7 =
"7".freeze
- N8 =
"8".freeze
- N9 =
"9".freeze
- N10 =
"10".freeze
- N11 =
"11".freeze
- N12 =
"12".freeze
- UNIVERSITY =
"university".freeze
Class Method Summary collapse
- .all_vars ⇒ Object
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.all_vars ⇒ Object
32 33 34 |
# File 'lib/flat_api/models/grade.rb', line 32 def self.all_vars @all_vars ||= [N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, UNIVERSITY].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
39 40 41 |
# File 'lib/flat_api/models/grade.rb', line 39 def self.build_from_hash(value) new.build_from_hash(value) end |