module Metasploit::Model::Search::Operation::Value::String

Concerns type casting of a raw value to a `String`.

Public Instance Methods

value=(formatted_value) click to toggle source

Sets {Metasploit::Model::Search::Operation::Base#value} by type casting to a String.

@param formatted_value [#to_s] @return [String]

# File lib/metasploit/model/search/operation/value/string.rb, line 11
def value=(formatted_value)
  @value = formatted_value.to_s
end