Class: FactPulse::AFNORProcessingRule
- Inherits:
-
Object
- Object
- FactPulse::AFNORProcessingRule
- Defined in:
- lib/factpulse/models/afnor_processing_rule.rb
Constant Summary collapse
- B2_B =
"B2B".freeze
- B2_B_INT =
"B2BInt".freeze
- B2_C =
"B2C".freeze
- B2_G =
"B2G".freeze
- B2_G_INT =
"B2GInt".freeze
- OUT_OF_SCOPE =
"OutOfScope".freeze
- B2_G_OUT_OF_SCOPE =
"B2GOutOfScope".freeze
- ARCHIVE_ONLY =
"ArchiveOnly".freeze
- NOT_APPLICABLE =
"NotApplicable".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
28 29 30 |
# File 'lib/factpulse/models/afnor_processing_rule.rb', line 28 def self.all_vars @all_vars ||= [B2_B, B2_B_INT, B2_C, B2_G, B2_G_INT, OUT_OF_SCOPE, B2_G_OUT_OF_SCOPE, ARCHIVE_ONLY, NOT_APPLICABLE].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
35 36 37 |
# File 'lib/factpulse/models/afnor_processing_rule.rb', line 35 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
42 43 44 45 |
# File 'lib/factpulse/models/afnor_processing_rule.rb', line 42 def build_from_hash(value) return value if AFNORProcessingRule.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #AFNORProcessingRule" end |