org.dmg.pmml.HasContinuousDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-model-gwt Show documentation
Show all versions of pmml-model-gwt Show documentation
JPMML GWT compatible class model
/*
* Copyright (c) 2018 Villu Ruusmann
*/
package org.dmg.pmml;
import java.util.List;
public interface HasContinuousDomain & HasContinuousDomain> {
boolean hasIntervals();
List getIntervals();
E addIntervals(Interval... intervals);
}