Class: TestKaferiCloud::TextHorizontalAlignment

Inherits:
Object
  • Object
show all
Defined in:
lib/test_kaferi_cloud/models/text_horizontal_alignment.rb

Constant Summary collapse

LEFT =
"Left".freeze
RIGHT =
"Right".freeze
CENTER =
"Center".freeze
JUSTIFY =
"Justify".freeze
FULL_JUSTIFY =
"FullJustify".freeze
NONE =
"None".freeze

Instance Method Summary collapse

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



37
38
39
40
41
42
43
44
# File 'lib/test_kaferi_cloud/models/text_horizontal_alignment.rb', line 37

def build_from_hash(value)
  # resolve issue with Concstant Name modification (ex: "FooName" to :FOO_NAME)
  # consantValues = TextHorizontalAlignment.constants.select{|c| c.to_s == value}
  constantValues = TextHorizontalAlignment.constants.select{ |const_name| TextHorizontalAlignment.const_get(const_name) == value}
  
  raise "Invalid ENUM value #{value} for class #TextHorizontalAlignment" if constantValues.empty?
  value
end