
RDFStore::Stanford::NodeFactory - definiton of the NodeFactory RDF API

use RDFStore::Stanford::NodeFactory;
my $factory = new RDFStore::Stanford::NodeFactory();
my $statement = $factory->createStatement(
$factory->createResource("http://pen.jrc.it/idex.html"),
$factory->createResource("http://rdf.dev.oclc.org/eor/2000/02/26-dcv#","creator"),
$factory->createLiteral("Alberto Reggiori")
);

This is just the interface definition. If you are more interested to an example implementation see RDFStore::NodeFactory(3)


Alberto Reggiori <areggiori@webweaving.org>