org.dmg.pmml.HasDefaultValue 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) 2017 Villu Ruusmann
*/
package org.dmg.pmml;
/**
*
* A marker interface for PMML expression elements that specify the defaultValue
attribute.
*
*/
public interface HasDefaultValue, V> {
V getDefaultValue();
E setDefaultValue(V defaultValue);
}