Class: AsposePdfCloud::CryptoAlgorithm
- Inherits:
-
Object
- Object
- AsposePdfCloud::CryptoAlgorithm
- Defined in:
- lib/aspose_pdf_cloud/models/crypto_algorithm.rb
Constant Summary collapse
- RC4X40 =
"RC4x40".freeze
- RC4X128 =
"RC4x128".freeze
- AE_SX128 =
"AESx128".freeze
- AE_SX256 =
"AESx256".freeze
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
36 37 38 39 40 41 42 43 |
# File 'lib/aspose_pdf_cloud/models/crypto_algorithm.rb', line 36 def build_from_hash(value) # resolve issue with Concstant Name modification (ex: "FooName" to :FOO_NAME) # consantValues = CryptoAlgorithm.constants.select{|c| c.to_s == value} constantValues = CryptoAlgorithm.constants.select{ |const_name| CryptoAlgorithm.const_get(const_name) == value} raise "Invalid ENUM value #{value} for class #CryptoAlgorithm" if constantValues.empty? value end |