public function EasyRdf_Literal::getValue

Returns the value of the literal.

Return value

string Value of this literal.

4 methods override EasyRdf_Literal::getValue()
EasyRdf_Literal_Boolean::getValue in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Boolean.php
Return the value of the literal cast to a PHP bool
EasyRdf_Literal_Date::getValue in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Date.php
Returns the date as a PHP DateTime object
EasyRdf_Literal_Decimal::getValue in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Decimal.php
Return the value of the literal cast to a PHP double
EasyRdf_Literal_Integer::getValue in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Integer.php
Return the value of the literal cast to a PHP int

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal.php, line 235

Class

EasyRdf_Literal
Class that represents an RDF Literal

Code

public function getValue() {
  return $this->value;
}