Class: AsposeCadCloud::InterpolationMode
- Inherits:
-
Object
- Object
- AsposeCadCloud::InterpolationMode
- Defined in:
- lib/aspose_cad_cloud/models/interpolation_mode.rb
Constant Summary collapse
- DEFAULT =
"Default".freeze
- LOW =
"Low".freeze
- HIGH =
"High".freeze
- BILINEAR =
"Bilinear".freeze
- BICUBIC =
"Bicubic".freeze
- NEAREST_NEIGHBOR =
"NearestNeighbor".freeze
- HIGH_QUALITY_BILINEAR =
"HighQualityBilinear".freeze
- HIGH_QUALITY_BICUBIC =
"HighQualityBicubic".freeze
- INVALID =
"Invalid".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
21 22 23 24 25 |
# File 'lib/aspose_cad_cloud/models/interpolation_mode.rb', line 21 def build_from_hash(value) constantValues = InterpolationMode.constants.select{|c| InterpolationMode::const_get(c) == value} raise "Invalid ENUM value #{value} for class #InterpolationMode" if constantValues.empty? value end |