Class: Weblate::LanguageCodeStyleEnum
- Inherits:
-
Object
- Object
- Weblate::LanguageCodeStyleEnum
- Defined in:
- lib/weblate/models/language_code_style_enum.rb
Constant Summary collapse
- POSIX =
"posix".freeze
- POSIX_LOWERCASE =
"posix_lowercase".freeze
- BCP =
"bcp".freeze
- POSIX_LONG =
"posix_long".freeze
- POSIX_LONG_LOWERCASE =
"posix_long_lowercase".freeze
- BCP_LONG =
"bcp_long".freeze
- BCP_LEGACY =
"bcp_legacy".freeze
- BCP_LOWER =
"bcp_lower".freeze
- ANDROID =
"android".freeze
- APPSTORE =
"appstore".freeze
- GOOGLEPLAY =
"googleplay".freeze
- LINUX =
"linux".freeze
- LINUX_LOWERCASE =
"linux_lowercase".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/weblate/models/language_code_style_enum.rb', line 32 def self.all_vars @all_vars ||= [POSIX, POSIX_LOWERCASE, BCP, POSIX_LONG, POSIX_LONG_LOWERCASE, BCP_LONG, BCP_LEGACY, BCP_LOWER, ANDROID, APPSTORE, GOOGLEPLAY, LINUX, LINUX_LOWERCASE].freeze end |
.build_from_hash(value) ⇒ String
Builds the enum from string
39 40 41 |
# File 'lib/weblate/models/language_code_style_enum.rb', line 39 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
46 47 48 49 |
# File 'lib/weblate/models/language_code_style_enum.rb', line 46 def build_from_hash(value) return value if LanguageCodeStyleEnum.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #LanguageCodeStyleEnum" end |