class EasyRdf_Literal_Boolean extends EasyRdf_Literal
Class that represents an RDF Literal of datatype xsd:boolean
Methods
static object |
create(mixed $value, string $lang = null, string $datatype = null)
Create a new literal object |
from EasyRdf_Literal |
static |
setDatatypeMapping(string $datatype, string $class)
Register an RDF datatype with a PHP class name |
from EasyRdf_Literal |
static |
deleteDatatypeMapping(string $datatype)
Remove the mapping between an RDF datatype and a PHP class name |
from EasyRdf_Literal |
static string |
getDatatypeForValue($value)
Get datatype URI for a PHP value. |
from EasyRdf_Literal |
object |
__construct(mixed $value, string $lang = null, string $datatype = null)
Constructor for creating a new boolean literal |
|
bool |
getValue()
Return the value of the literal cast to a PHP bool |
|
string |
getDatatypeUri()
Returns the full datatype URI of the literal. |
from EasyRdf_Literal |
string |
getDatatype()
Returns the shortened datatype URI of the literal. |
from EasyRdf_Literal |
string |
getLang()
Returns the language of the literal. |
from EasyRdf_Literal |
array |
toRdfPhp()
Returns the properties of the literal as an associative array |
from EasyRdf_Literal |
string |
__toString()
Magic method to return the value of a literal as a string |
from EasyRdf_Literal |
string |
dumpValue(string $format = 'html', string $color = 'black')
Return pretty-print view of the literal |
from EasyRdf_Literal |
bool |
isTrue()
Return true if the value of the literal is 'true' or '1' |
|
bool |
isFalse()
Return true if the value of the literal is 'false' or '0' |
Details
in EasyRdf_Literal at line 79
static public object
create(mixed $value, string $lang = null, string $datatype = null)
Create a new literal object
PHP values of type bool, int or float, will automatically be converted to the corresponding datatype and PHP sub-class.
If a registered datatype is given, then the registered subclass of EasyRdf_Literal will instantiated.
Note that literals are not required to have a language or datatype. Literals cannot have both a language and a datatype.
in EasyRdf_Literal at line 128
static public
setDatatypeMapping(string $datatype, string $class)
Register an RDF datatype with a PHP class name
When parsing registered class will be used whenever the datatype is seen.
When serialising a registered class, the mapping will be used to set the datatype in the RDF.
Example: EasyRdfLiteral::registerDatatype('xsd:dateTime', 'MyDateTime_Class');
in EasyRdf_Literal at line 151
static public
deleteDatatypeMapping(string $datatype)
Remove the mapping between an RDF datatype and a PHP class name
in EasyRdf_Literal at line 176
static public string
getDatatypeForValue($value)
Get datatype URI for a PHP value.
This static function is intended for internal use. Given a PHP value, it will return an XSD datatype URI for that value, for example: http://www.w3.org/2001/XMLSchema#integer
at line 57
public object
__construct(mixed $value, string $lang = null, string $datatype = null)
Constructor for creating a new boolean literal
If the value is not a string, then it will be converted to 'true' or 'false'.
at line 71
public bool
getValue()
Return the value of the literal cast to a PHP bool
If the value is 'true' or '1' return true, otherwise returns false.
in EasyRdf_Literal at line 248
public string
getDatatypeUri()
Returns the full datatype URI of the literal.
in EasyRdf_Literal at line 257
public string
getDatatype()
Returns the shortened datatype URI of the literal.
in EasyRdf_Literal at line 270
public string
getLang()
Returns the language of the literal.
in EasyRdf_Literal at line 282
public array
toRdfPhp()
Returns the properties of the literal as an associative array
For example: array('type' => 'literal', 'value' => 'string value')
in EasyRdf_Literal at line 304
public string
__toString()
Magic method to return the value of a literal as a string
in EasyRdf_Literal at line 315
public string
dumpValue(string $format = 'html', string $color = 'black')
Return pretty-print view of the literal
at line 80
public bool
isTrue()
Return true if the value of the literal is 'true' or '1'
at line 89
public bool
isFalse()
Return true if the value of the literal is 'false' or '0'