
org.dmg.pmml.HasId Maven / Gradle / Ivy
/*
* Copyright (c) 2013 KNIME.com AG, Zurich, Switzerland
*/
package org.dmg.pmml;
/**
*
* A marker interface for PMML elements that specify the id
attribute.
*
*/
public interface HasId {
/**
* @return The value of the id
attribute. Could be null
.
*/
String getId();
HasId setId(String id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy