Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/softlayer/object_mask_helpers.rb

Overview

Ruby String Class

Instance Method Summary collapse

Instance Method Details

#to_sl_object_mask_propertyObject

Returns a string representing the object mask content represented by the String. Strings are simply represented as copies of themselves. We make a copy in case the original String is modified somewhere along the way



84
85
86
# File 'lib/softlayer/object_mask_helpers.rb', line 84

def to_sl_object_mask_property()
  return self.strip
end