* @license http://github.com/basdenooijer/solarium/raw/master/COPYING * @link http://www.solarium-project.org/ * * @package Solarium * @subpackage Result */ /** * Select component debug detail result * * @package Solarium * @subpackage Result */ class Solarium_Result_Select_Debug_Detail { /** * Value * * @var float */ protected $_value; /** * Match * * @var boolean */ protected $_match; /** * Description * * @var string */ protected $_description; /** * Constructor * * @param boolean $match * @param float $value * @param string $description */ public function __construct($match, $value, $description) { $this->_match = $match; $this->_value = $value; $this->_description = $description; } /** * Get match status * * @return bool */ public function getMatch() { return $this->_match; } /** * Get match value (score) * * @return float */ public function getValue() { return $this->_value; } /** * Get description * * @return string */ public function getDescription() { return $this->_description; } }