You are here

public function EasyRdf_Format::getName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php \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 vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php
Create a new parser to parse this format
EasyRdf_Format::newSerialiser in vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php
Create a new serialiser to parse this format

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Format.php, line 289

Class

EasyRdf_Format
Class the represents an RDF file format.

Code

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