|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jrdf.graph.mem.GraphElementFactoryImpl
public final class GraphElementFactoryImpl
A SkipListNode Factory is a class which create the various components of a graph. It is tied to a specific instance of GraphImpl.
Method Summary | |
---|---|
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. |
BlankNode |
createResource()
Create a blank nodes that is associated with a specific graph. |
URIReference |
createResource(URI uri)
Create a URI reference. |
URIReference |
createResource(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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public BlankNode createResource() throws GraphElementFactoryException
createResource
in interface GraphElementFactory
GraphElementFactoryException
- If anonymous resources can't be generated.public URIReference createResource(URI uri) throws GraphElementFactoryException
createResource
in interface GraphElementFactory
uri
- The URI of the resource.
GraphElementFactoryException
- If the resource failed to be created.public URIReference createResource(URI uri, boolean validate) throws GraphElementFactoryException
createResource
in interface GraphElementFactory
uri
- The URI of the resource.validate
- true if we disbale checking to see if the URI is valid.
GraphElementFactoryException
public Literal createLiteral(String lexicalValue)
createLiteral
in interface GraphElementFactory
lexicalValue
- The lexical value for the literal.
public Literal createLiteral(String lexicalValue, String languageType)
createLiteral
in interface GraphElementFactory
lexicalValue
- The lexical value for the literal. Cannot be null.languageType
- The language of the literal or null if not required.
public Literal createLiteral(String lexicalValue, URI datatypeURI)
createLiteral
in interface GraphElementFactory
lexicalValue
- The lexical value for the literal. Cannot be null.datatypeURI
- The URI of the datatype of the literal or null if not
required.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |