Click or drag to resize

INodeFactory Interface

Interface for classes which can create Nodes.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public interface INodeFactory

The INodeFactory type exposes the following members.

Methods
  NameDescription
Public methodCreateBlankNode
Creates a Blank Node with a new automatically generated ID.
Public methodCreateBlankNode(String)
Creates a Blank Node with the given Node ID.
Public methodCreateGraphLiteralNode
Creates a Graph Literal Node which represents the empty Subgraph.
Public methodCreateGraphLiteralNode(IGraph)
Creates a Graph Literal Node which represents the given Subgraph.
Public methodCreateLiteralNode(String)
Creates a Literal Node with the given Value.
Public methodCreateLiteralNode(String, String)
Creates a Literal Node with the given Value and Language.
Public methodCreateLiteralNode(String, Uri)
Creates a Literal Node with the given Value and Data Type.
Public methodCreateUriNode
Creates a URI Node for the given URI.
Public methodCreateVariableNode
Creates a Variable Node for the given Variable Name.
Public methodGetNextBlankNodeID
Creates a new unused Blank Node ID and returns it.
Top
See Also