org.dmg.pmml.HasRequiredName 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) Villu Ruusmann
*/
package org.dmg.pmml;
public interface HasRequiredName> extends HasName, Indexable {
String requireName();
@Override
default
public String getKey(){
return requireName();
}
}