public function EasyRdf_Format::getName

Get the name of a format object

Return value

string The name of the format (e.g. rdfxml)

2 calls to EasyRdf_Format::getName()
EasyRdf_Format::newParser in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php
Create a new parser to parse this format
EasyRdf_Format::newSerialiser in drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php
Create a new serialiser to parse this format

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php, line 290

Class

EasyRdf_Format
Class the represents an RDF file format.

Code

public function getName() {
  return $this->name;
}