![JAR search and dependency download from the Maven repository](/logo.png)
com.github.anno4j.recommendation.model.SimilarityStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anno4j-recommendation Show documentation
Show all versions of anno4j-recommendation Show documentation
Recommendation Module for Anno4j
package com.github.anno4j.recommendation.model;
import com.github.anno4j.model.impl.ResourceObject;
import com.github.anno4j.model.namespaces.RDF;
import com.github.anno4j.recommendation.ontologies.ANNO4JREC;
import org.openrdf.annotations.Iri;
/**
* Extends a statement, automatically setting the predicate.
*/
@Iri(ANNO4JREC.SIMILARITY_STATEMENT)
public interface SimilarityStatement extends Statement {
/**
* Gets The value of similarity.
*
* @return Value of The value of similarity.
*/
@Iri(ANNO4JREC.SIMILARITY)
public double getSimilarity();
/**
* Sets new The value of similarity.
*
* @param similarity New value of The value of similarity.
*/
@Iri(ANNO4JREC.SIMILARITY)
public void setSimilarity(double similarity);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy