Class: String

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

Overview

SoftLayer Extensions to the String class to support using strings to create object masks

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 This routine is an implementation detail used in the conversion of hashes to object mask strings. You should not have to call this method directly.



90
91
92
# File 'lib/softlayer/object_mask_helpers.rb', line 90

def _to_sl_object_mask_property()
  return self.strip
end