
net.sansa_stack.inference.spark.data.model.RDFTuple.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sansa-inference-spark_2.12 Show documentation
Show all versions of sansa-inference-spark_2.12 Show documentation
Apache Spark based inference layer for RDF and OWL
The newest version!
package net.sansa_stack.inference.spark.data.model
/**
* An RDF tuple `(s o)`, i.e. only subject and object are represented.
*
* @param s the subject
* @param o the object
* @author Lorenz Buehmann
*/
case class RDFTuple(s: String, o: String) extends Product2[String, String] {
override def _1: String = s
override def _2: String = o
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy