|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface GraphElementFactory
A Graph Element Factory is a class which creates the various components of a graph including: resources, literals and blank nodes. It is generally tied to a specific graph (in the case of blank nodes it must be).
Method Summary | |
---|---|
BlankNode |
createBlankNode()
Create a blank node that is associated with a specific graph. |
Literal |
createLiteral(Object object)
Converts a known Java class (such as Integer) into an RDF literal (XSD:int). |
Literal |
createLiteral(String lexicalValue)
Creates a new literal with the given lexical value, with no language or datatype. |
Literal |
createLiteral(String lexicalValue,
String languageType)
Creates a new literal with the given lexical value, with a given language but no datatype. |
Literal |
createLiteral(String lexicalValue,
URI datatypeURI)
Creates a new literal with the given lexical value and given datatype. |
Resource |
createResource()
Create a resource, wrapping a blank node that is associated with a specific graph. |
Resource |
createResource(BlankNode node)
Wrap a blank node in a resource. |
Resource |
createResource(URI uri)
Create a URI reference wrapped in a Resource. |
Resource |
createResource(URI uri,
boolean validate)
Create a URI reference wrapped in a Resource without checking if the URI given is a valid RDF URI, currently if the URI is absolute. |
Resource |
createResource(URIReference node)
Wrap a URIReference in a resource. |
URIReference |
createURIReference(URI uri)
Create a URI reference. |
URIReference |
createURIReference(URI uri,
boolean validate)
Create a URI reference without checking if the URI given is a valid RDF URI, currently if the URI is absolute. |
Method Detail |
---|
Resource createResource() throws GraphElementFactoryException
GraphElementFactoryException
- if adding a blank node fails.Resource createResource(BlankNode node) throws GraphElementFactoryException
node
- the node to wrap.
GraphElementFactoryException
- if the blank node does not exist.Resource createResource(URIReference node) throws GraphElementFactoryException
node
- the node to wrap.
GraphElementFactoryException
- if the URIReference does not exist.BlankNode createBlankNode() throws GraphElementFactoryException
GraphElementFactoryException
- if adding a blank node fails.Resource createResource(URI uri) throws GraphElementFactoryException
uri
- The URI of the resource.
GraphElementFactoryException
- If the resource failed to be created.Resource createResource(URI uri, boolean validate) throws GraphElementFactoryException
uri
- The URI of the resource.validate
- true if we disbale checking to see if the URI is valid.
GraphElementFactoryException
- If the resource failed to be created.URIReference createURIReference(URI uri) throws GraphElementFactoryException
uri
- The URI of the resource.
GraphElementFactoryException
- If the resource failed to be created.URIReference createURIReference(URI uri, boolean validate) throws GraphElementFactoryException
uri
- The URI of the resource.validate
- true if we disbale checking to see if the URI is valid.
GraphElementFactoryException
- If the resource failed to be created.Literal createLiteral(Object object) throws GraphElementFactoryException
object
- the value object (a Java class) to create the literal from.
GraphElementFactoryException
- If the literal failed to be created.
IllegalArgumentException
- if there is no registered class to value creator mapping in the datatype
factory.Literal createLiteral(String lexicalValue) throws GraphElementFactoryException
lexicalValue
- The lexical value for the literal.
GraphElementFactoryException
- If the literal failed to be created.Literal createLiteral(String lexicalValue, String languageType) throws GraphElementFactoryException
lexicalValue
- The lexical value for the literal. Cannot be null.languageType
- The language of the literal or null if not required.
GraphElementFactoryException
- If the literal failed to be created.Literal createLiteral(String lexicalValue, URI datatypeURI) throws GraphElementFactoryException
lexicalValue
- The lexical value for the literal. Cannot be null.datatypeURI
- The URI of the datatype of the literal or null if not
required.
GraphElementFactoryException
- If the literal failed to be created.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |