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

org.dmg.pmml.HasScore Maven / Gradle / Ivy

There is a newer version: 1.6.6
Show newest version
/*
 * Copyright (c) 2018 Villu Ruusmann
 */
package org.dmg.pmml;

public interface HasScore> {

	default
	boolean hasScore(){
		Object score = getScore();

		return (score != null);
	}

	Object getScore();

	E setScore(Object score);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy