org.dmg.pmml.HasId 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 KNIME.com AG, Zurich, Switzerland
*/
package org.dmg.pmml;
/**
*
* A marker interface for PMML elements that specify the id
attribute.
*
*
*
* In a collection of {@link HasId} elements, all non-null
identifier values must be unique.
* However, there may be multiple {@link HasId} elements with null
identifier values.
*
*
* @see Indexable
*/
public interface HasId, V> {
/**
* @return The value of the id
attribute. Could be null
.
*/
V getId();
E setId(V id);
}