* @package Mammut\DB\Sql */ class Literal extends \Mammut\StrictObject implements iExprValue { protected $value = ''; protected $valuetype; public function __construct($value, $valuetype = Literal::TYPE_IDENTIFIER) { $this->value = $value; $this->valuetype = $valuetype; } public function getValue() { return $this->value; } public function getValueType() { return $this->valuetype; } }