# File lib/dm-core/property.rb, line 444
      def options
        options = {}
        accepted_options.each do |method|
          value = send(method)
          options[method] = send(method) unless value.nil?
        end
        options
      end