class String

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

Public Instance Methods

_to_sl_object_mask_property() click to toggle source

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.

# File lib/softlayer/object_mask_helpers.rb, line 90
def _to_sl_object_mask_property()
  return self.strip
end