Class: FactPulse::AFNORProcessingRule

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Class Method Details

.all_varsObject



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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



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