Class: AsposePdfCloud::PolyIntent
- Inherits:
-
Object
- Object
- AsposePdfCloud::PolyIntent
- Defined in:
- lib/aspose_pdf_cloud/models/poly_intent.rb
Constant Summary collapse
- UNDEFINED =
"Undefined".freeze
- POLYGON_CLOUD =
"PolygonCloud".freeze
- POLY_LINE_DIMENSION =
"PolyLineDimension".freeze
- POLYGON_DIMENSION =
"PolygonDimension".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/poly_intent.rb', line 36 def build_from_hash(value) # resolve issue with Concstant Name modification (ex: "FooName" to :FOO_NAME) # consantValues = PolyIntent.constants.select{|c| c.to_s == value} constantValues = PolyIntent.constants.select{ |const_name| PolyIntent.const_get(const_name) == value} raise "Invalid ENUM value #{value} for class #PolyIntent" if constantValues.empty? value end |