org.dmg.pmml.Entity 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) 2013 Villu Ruusmann
*/
package org.dmg.pmml;
import jakarta.xml.bind.annotation.XmlTransient;
@XmlTransient
abstract
public class Entity extends PMMLObject implements HasId, V> {
public boolean hasId(){
V id = getId();
return (id != null);
}
}