RdfBlankNode

data class RdfBlankNode(val blankNodeId: String, val tripleList: List<RdfPredicateObjectPair> = listOf()) : RdfResource

It models the concept of RDF Blank Node in the context of Digital Twin Knowledge Graph. A Blank Node has a blankNodeId and it has an associated tripleList.

Constructors

Link copied to clipboard
constructor(blankNodeId: String, tripleList: List<RdfPredicateObjectPair> = listOf())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val uri: Nothing? = null

The uri of the resource that, in case of a Blank Node can be null.

Functions

Link copied to clipboard

Add a triple to the blank node. It will return a new blank node with the triple added.