Class: AsposeCadCloud::InterpolationMode

Inherits:
Object
  • Object
show all
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

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



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