All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aksw.jena_sparql_api.views.Polarity Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy