
org.aksw.jena_sparql_api.views.Polarity Maven / Gradle / Ivy
package org.aksw.jena_sparql_api.views;
public enum Polarity {
POSITIVE(true),
NEGATIVE(false);
private boolean polarity;
Polarity(boolean polarity) {
this.polarity = polarity;
}
public boolean isPositive() {
return polarity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy