We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aadf0d1 commit 0c2cd10Copy full SHA for 0c2cd10
binary-array-ld-lib/src/main/kotlin/net/bald/model/ModelBinaryArrayConverter.kt
@@ -0,0 +1,19 @@
1
+package net.bald.model
2
+
3
+import net.bald.BinaryArray
4
+import org.apache.jena.rdf.model.Model
5
+import org.apache.jena.rdf.model.ModelFactory
6
7
+/**
8
+ * API for converting a [BinaryArray] to a linked data [Model].
9
+ */
10
+object ModelBinaryArrayConverter {
11
+ /**
12
+ * Convert the given binary array metadata into a linked data model.
13
+ * @param ba The binary array to convert.
14
+ * @return The resulting model.
15
16
+ fun convert(ba: BinaryArray): Model {
17
+ TODO()
18
+ }
19
+}
0 commit comments